gitextract_zddnpbs2/ ├── README-ANDROID.txt ├── README.md ├── data-logging-demo/ │ ├── OceanSurveyDemo-Android/ │ │ ├── .gitignore │ │ ├── .idea/ │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── copyright/ │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── scopes/ │ │ │ │ └── scope_settings.xml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── OceanSurveyDemo-Android.iml │ │ ├── README.md │ │ ├── ant.properties │ │ ├── app/ │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings/ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── example/ │ │ │ │ └── PebbleKitExample/ │ │ │ │ └── ExampleDataLoggingActivity.java │ │ │ ├── lib/ │ │ │ │ └── guava-14.0.1.jar │ │ │ ├── libs/ │ │ │ │ └── pebblekit-2.6.0-beta2-eclipse.jar │ │ │ ├── project.properties │ │ │ └── res/ │ │ │ ├── layout/ │ │ │ │ └── activity_counter.xml │ │ │ ├── menu/ │ │ │ │ └── counter.xml │ │ │ └── values/ │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── build.xml │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res/ │ │ │ ├── layout/ │ │ │ │ └── activity_counter.xml │ │ │ ├── menu/ │ │ │ │ └── counter.xml │ │ │ ├── values/ │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── values-sw600dp/ │ │ │ │ └── dimens.xml │ │ │ └── values-sw720dp-land/ │ │ │ └── dimens.xml │ │ ├── settings.gradle │ │ └── src/ │ │ └── com/ │ │ └── getpebble/ │ │ └── example/ │ │ └── logging/ │ │ └── ExampleDataLoggingActivity.java │ ├── OceanSurveyDemo-iOS/ │ │ ├── OceanSurveyDemo/ │ │ │ ├── OSAppDelegate.h │ │ │ ├── OSAppDelegate.m │ │ │ ├── OSDataLoggingViewController.h │ │ │ ├── OSDataLoggingViewController.m │ │ │ ├── OceanSurveyDemo-Info.plist │ │ │ ├── OceanSurveyDemo-Prefix.pch │ │ │ ├── appinfo.json │ │ │ ├── en.lproj/ │ │ │ │ ├── ACDespoolingViewController.xib │ │ │ │ ├── ACSecondViewController.xib │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── OceanSurveyDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── OceanSurveyDemo.xccheckout │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── OceanSurvey.xcscheme │ │ ├── OceanSurveyDemo.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Podfile │ │ └── Pods/ │ │ ├── PebbleKit/ │ │ │ ├── PebbleKit.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ ├── PebbleKit │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ │ ├── PBLog.h │ │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ │ └── gtypes.h │ │ │ │ │ └── PebbleKit │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ └── PebbleKit │ │ │ ├── PebbleVendor.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ ├── PebbleVendor │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ │ ├── DDLog.h │ │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ │ └── PebbleVendor │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ └── PebbleVendor │ │ │ └── Readme.md │ │ ├── Pods-PebbleKit-Private.xcconfig │ │ ├── Pods-PebbleKit-dummy.m │ │ ├── Pods-PebbleKit-prefix.pch │ │ ├── Pods-PebbleKit.xcconfig │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.xcconfig │ │ └── Pods.xcodeproj/ │ │ └── project.pbxproj │ ├── README.md │ └── ocean-survey-demo/ │ ├── appinfo.json │ ├── src/ │ │ └── ocean-survey-demo.c │ └── wscript ├── golf-demo/ │ ├── GolfDemo-Android/ │ │ ├── .classpath │ │ ├── .idea/ │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── copyright/ │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── scopes/ │ │ │ │ └── scope_settings.xml │ │ │ └── vcs.xml │ │ ├── .project │ │ ├── .settings/ │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── GolfDemo-Android.iml │ │ ├── README.md │ │ ├── ant.properties │ │ ├── app/ │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── example/ │ │ │ │ └── PebbleKitExample/ │ │ │ │ └── ExampleGolfActivity.java │ │ │ └── res/ │ │ │ ├── layout/ │ │ │ │ └── activity_golf.xml │ │ │ ├── menu/ │ │ │ │ └── options_menu.xml │ │ │ └── values/ │ │ │ ├── dimens.xml │ │ │ ├── dslv_attrs.xml │ │ │ ├── ids.xml │ │ │ └── strings.xml │ │ ├── build.gradle │ │ ├── build.xml │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── libs/ │ │ │ ├── android-support-v4.jar │ │ │ └── gcm.jar │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res/ │ │ │ ├── layout/ │ │ │ │ ├── activity_gcm.xml │ │ │ │ ├── activity_golf.xml │ │ │ │ ├── activity_sms.xml │ │ │ │ ├── activity_sports.xml │ │ │ │ ├── activity_todo_list.xml │ │ │ │ ├── activity_weather.xml │ │ │ │ ├── checkable_main.xml │ │ │ │ ├── dialog_add_todo_item.xml │ │ │ │ └── list_item_checkable.xml │ │ │ ├── menu/ │ │ │ │ └── options_menu.xml │ │ │ └── values/ │ │ │ ├── dimens.xml │ │ │ ├── dslv_attrs.xml │ │ │ ├── ids.xml │ │ │ └── strings.xml │ │ ├── settings.gradle │ │ └── src/ │ │ └── com/ │ │ ├── example/ │ │ │ └── PebbleKitExample/ │ │ │ ├── ExampleGCMActivity.java │ │ │ ├── ExampleGolfActivity.java │ │ │ ├── ExampleSmsActivity.java │ │ │ ├── ExampleSportsActivity.java │ │ │ ├── ExampleWeatherActivity.java │ │ │ ├── GCMIntentService.java │ │ │ ├── MainActivity.java │ │ │ └── TodoList/ │ │ │ ├── CheckableLinearLayout.java │ │ │ ├── ExampleTodoListActivity.java │ │ │ ├── TodoListAdapter.java │ │ │ └── TodoListItem.java │ │ └── mobeta/ │ │ └── android/ │ │ └── dslv/ │ │ ├── DragSortController.java │ │ ├── DragSortCursorAdapter.java │ │ ├── DragSortItemView.java │ │ ├── DragSortItemViewCheckable.java │ │ ├── DragSortListView.java │ │ ├── ResourceDragSortCursorAdapter.java │ │ ├── SimpleDragSortCursorAdapter.java │ │ └── SimpleFloatViewManager.java │ ├── GolfDemo-iOS/ │ │ ├── GolfDemo/ │ │ │ ├── GDAppDelegate.h │ │ │ ├── GDAppDelegate.m │ │ │ ├── GDAppViewController.h │ │ │ ├── GDAppViewController.m │ │ │ ├── GDDataViewController.h │ │ │ ├── GDDataViewController.m │ │ │ ├── GDIconViewController.h │ │ │ ├── GDIconViewController.m │ │ │ ├── GDIconViewController.xib │ │ │ ├── GolfDemo-Info.plist │ │ │ ├── GolfDemo-Prefix.pch │ │ │ ├── en.lproj/ │ │ │ │ ├── GDAppViewController.xib │ │ │ │ ├── GDDataViewController.xib │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── GolfDemo.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── GolfDemo.xccheckout │ │ ├── GolfDemo.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Podfile │ │ └── Pods/ │ │ ├── PebbleKit/ │ │ │ ├── PebbleKit.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ ├── PebbleKit │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ │ ├── PBLog.h │ │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ │ └── gtypes.h │ │ │ │ │ └── PebbleKit │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ └── PebbleKit │ │ │ ├── PebbleVendor.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ ├── PebbleVendor │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ │ ├── DDLog.h │ │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ │ └── PebbleVendor │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ └── PebbleVendor │ │ │ └── Readme.md │ │ ├── Pods-PebbleKit-Private.xcconfig │ │ ├── Pods-PebbleKit-dummy.m │ │ ├── Pods-PebbleKit-prefix.pch │ │ ├── Pods-PebbleKit.xcconfig │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.xcconfig │ │ └── Pods.xcodeproj/ │ │ └── project.pbxproj │ └── README.md ├── pebblekit-js/ │ ├── quotes/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ ├── entry.c │ │ │ ├── entry.h │ │ │ ├── js/ │ │ │ │ └── pebble-js-app.js │ │ │ └── quotes.c │ │ └── wscript │ └── weather/ │ ├── README.md │ ├── appinfo.json │ ├── src/ │ │ ├── js/ │ │ │ └── pebble-js-app.js │ │ └── weather.c │ └── wscript ├── sports-demo/ │ ├── README.md │ ├── SportsDemo-Android/ │ │ ├── .classpath │ │ ├── .idea/ │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── copyright/ │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── scopes/ │ │ │ │ └── scope_settings.xml │ │ │ └── vcs.xml │ │ ├── .project │ │ ├── .settings/ │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── README.md │ │ ├── SportsDemo-Android.iml │ │ ├── ant.properties │ │ ├── app/ │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── example/ │ │ │ │ └── PebbleKitExample/ │ │ │ │ └── ExampleSportsActivity.java │ │ │ └── res/ │ │ │ ├── layout/ │ │ │ │ └── activity_sports.xml │ │ │ ├── menu/ │ │ │ │ └── options_menu.xml │ │ │ └── values/ │ │ │ ├── dimens.xml │ │ │ ├── dslv_attrs.xml │ │ │ ├── ids.xml │ │ │ └── strings.xml │ │ ├── build.gradle │ │ ├── build.xml │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── libs/ │ │ │ ├── android-support-v4.jar │ │ │ └── gcm.jar │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res/ │ │ │ ├── layout/ │ │ │ │ ├── activity_gcm.xml │ │ │ │ ├── activity_golf.xml │ │ │ │ ├── activity_sms.xml │ │ │ │ ├── activity_sports.xml │ │ │ │ ├── activity_todo_list.xml │ │ │ │ ├── activity_weather.xml │ │ │ │ ├── checkable_main.xml │ │ │ │ ├── dialog_add_todo_item.xml │ │ │ │ └── list_item_checkable.xml │ │ │ ├── menu/ │ │ │ │ └── options_menu.xml │ │ │ └── values/ │ │ │ ├── dimens.xml │ │ │ ├── dslv_attrs.xml │ │ │ ├── ids.xml │ │ │ └── strings.xml │ │ ├── settings.gradle │ │ └── src/ │ │ └── com/ │ │ ├── example/ │ │ │ └── PebbleKitExample/ │ │ │ ├── ExampleGCMActivity.java │ │ │ ├── ExampleGolfActivity.java │ │ │ ├── ExampleSmsActivity.java │ │ │ ├── ExampleSportsActivity.java │ │ │ ├── ExampleWeatherActivity.java │ │ │ ├── GCMIntentService.java │ │ │ ├── MainActivity.java │ │ │ └── TodoList/ │ │ │ ├── CheckableLinearLayout.java │ │ │ ├── ExampleTodoListActivity.java │ │ │ ├── TodoListAdapter.java │ │ │ └── TodoListItem.java │ │ └── mobeta/ │ │ └── android/ │ │ └── dslv/ │ │ ├── DragSortController.java │ │ ├── DragSortCursorAdapter.java │ │ ├── DragSortItemView.java │ │ ├── DragSortItemViewCheckable.java │ │ ├── DragSortListView.java │ │ ├── ResourceDragSortCursorAdapter.java │ │ ├── SimpleDragSortCursorAdapter.java │ │ └── SimpleFloatViewManager.java │ └── SportsDemo-iOS/ │ ├── Podfile │ ├── Pods/ │ │ ├── PebbleKit/ │ │ │ ├── PebbleKit.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ ├── PebbleKit │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ │ ├── PBLog.h │ │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ │ └── gtypes.h │ │ │ │ │ └── PebbleKit │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ └── PebbleKit │ │ │ ├── PebbleVendor.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ ├── PebbleVendor │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ │ ├── DDLog.h │ │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ │ └── PebbleVendor │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ └── PebbleVendor │ │ │ └── Readme.md │ │ ├── Pods-PebbleKit-Private.xcconfig │ │ ├── Pods-PebbleKit-dummy.m │ │ ├── Pods-PebbleKit-prefix.pch │ │ ├── Pods-PebbleKit.xcconfig │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.xcconfig │ │ └── Pods.xcodeproj/ │ │ └── project.pbxproj │ ├── SportsDemo/ │ │ ├── SDAppDelegate.h │ │ ├── SDAppDelegate.m │ │ ├── SDAppViewController.h │ │ ├── SDAppViewController.m │ │ ├── SDDataViewController.h │ │ ├── SDDataViewController.m │ │ ├── SDIconViewController.h │ │ ├── SDIconViewController.m │ │ ├── SDIconViewController.xib │ │ ├── SportsDemo-Info.plist │ │ ├── SportsDemo-Prefix.pch │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ ├── SDAppViewController.xib │ │ │ └── SDDataViewController.xib │ │ └── main.m │ ├── SportsDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── SportsDemo.xccheckout │ └── SportsDemo.xcworkspace/ │ └── contents.xcworkspacedata ├── watchapps/ │ ├── app_font_browser/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── app_font_browser.c │ │ └── wscript │ ├── app_font_viewer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── resources/ │ │ │ └── fonts/ │ │ │ └── SIL - Open Font License.txt │ │ ├── src/ │ │ │ └── app_font_viewer.c │ │ └── wscript │ ├── app_mockup_helper/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── app_mockup_helper.c │ │ └── wscript │ ├── feature-background-counter/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── main.c │ │ ├── worker_src/ │ │ │ └── worker.c │ │ └── wscript │ ├── feature_accel_discs/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_accel_discs.c │ │ └── wscript │ ├── feature_app_logging/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_app_logging.c │ │ └── wscript │ ├── feature_app_wakeup/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── tea_timer.c │ │ └── wscript │ ├── feature_clock_mode/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_clock_mode.c │ │ └── wscript │ ├── feature_custom_font/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── resources/ │ │ │ └── fonts/ │ │ │ └── osp-din/ │ │ │ ├── COPYING.txt │ │ │ ├── FONTLOG │ │ │ ├── OFL-1.1.txt │ │ │ └── README.pebble │ │ ├── src/ │ │ │ └── feature_custom_font.c │ │ └── wscript │ ├── feature_draw_bitmap/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_draw_bitmap.c │ │ └── wscript │ ├── feature_draw_bitmap_composite/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_draw_bitmap_composite.c │ │ └── wscript │ ├── feature_focus_handler/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_focus_handler.c │ │ └── wscript │ ├── feature_frame_buffer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_frame_buffer.c │ │ └── wscript │ ├── feature_gpath/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_gpath.c │ │ └── wscript │ ├── feature_image/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_image.c │ │ └── wscript │ ├── feature_image_transparent/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_image_transparent.c │ │ └── wscript │ ├── feature_inverter_layer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_inverter_layer.c │ │ └── wscript │ ├── feature_layer_data/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_layer_data.c │ │ └── wscript │ ├── feature_menu_layer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_menu_layer.c │ │ └── wscript │ ├── feature_persist_counter/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_persist_counter.c │ │ └── wscript │ ├── feature_property_animation/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_property_animation.c │ │ └── wscript │ ├── feature_scroll_layer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_scroll_layer.c │ │ └── wscript │ ├── feature_simple_menu_layer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_simple_menu_layer.c │ │ └── wscript │ ├── feature_stdlib/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_stdlib.c │ │ └── wscript │ ├── feature_text_alignment/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_text_alignment.c │ │ └── wscript │ ├── feature_text_draw/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_text_draw.c │ │ └── wscript │ ├── feature_timer/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_timer.c │ │ └── wscript │ ├── feature_timer_animation/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_timer_animation.c │ │ └── wscript │ ├── feature_vibe/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_vibe.c │ │ └── wscript │ ├── feature_vibe_custom/ │ │ ├── README.md │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── feature_vibe_custom.c │ │ └── wscript │ └── pebble_arcade/ │ ├── README.md │ ├── appinfo.json │ ├── src/ │ │ ├── entry.c │ │ ├── entry.h │ │ ├── game.c │ │ ├── game.h │ │ ├── pebble_arcade.c │ │ ├── score.c │ │ └── score.h │ └── wscript ├── watchfaces/ │ ├── big_time/ │ │ ├── appinfo.json │ │ ├── fonttools/ │ │ │ └── font2png.py │ │ ├── resources/ │ │ │ └── fonts/ │ │ │ └── README │ │ ├── src/ │ │ │ └── big_time.c │ │ └── wscript │ ├── classio/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── classio.c │ │ └── wscript │ ├── classio-battery-connection/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── classio.c │ │ └── wscript │ ├── drop_zone/ │ │ ├── appinfo.json │ │ ├── resources/ │ │ │ └── fonts/ │ │ │ └── Google Android License.txt │ │ ├── src/ │ │ │ └── drop_zone.c │ │ └── wscript │ ├── feature_compass/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── compass.c │ │ └── wscript │ ├── fuzzy_time/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ ├── fuzzy_time.c │ │ │ ├── num2words.c │ │ │ └── num2words.h │ │ └── wscript │ ├── just_a_bit/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── just_a_bit.c │ │ └── wscript │ ├── ninety_one_dub/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── ninety_one_dub.c │ │ └── wscript │ ├── onthebutton/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── onthebutton.c │ │ └── wscript │ ├── rumbletime/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── rumbletime.c │ │ └── wscript │ ├── segment_six/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ └── segment_six.c │ │ └── wscript │ ├── simple_analog/ │ │ ├── appinfo.json │ │ ├── src/ │ │ │ ├── simple_analog.c │ │ │ └── simple_analog.h │ │ └── wscript │ ├── simplicity/ │ │ ├── appinfo.json │ │ ├── resources/ │ │ │ └── fonts/ │ │ │ └── Google Android License.txt │ │ ├── src/ │ │ │ └── simplicity.c │ │ └── wscript │ └── tic_tock_toe/ │ ├── appinfo.json │ ├── src/ │ │ └── tic_tock_toe.c │ └── wscript └── weather-demo/ ├── WeatherDemo-Android/ │ ├── .classpath │ ├── .gradle/ │ │ └── 1.12/ │ │ └── taskArtifacts/ │ │ └── cache.properties │ ├── .idea/ │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright/ │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries/ │ │ │ ├── guava_14_0_1.xml │ │ │ └── pebblekit_2_5_0.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes/ │ │ │ └── scope_settings.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── .project │ ├── .settings/ │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── README.md │ ├── WeatherDemo-Android.iml │ ├── ant.properties │ ├── app/ │ │ ├── app.iml │ │ ├── build.gradle │ │ └── src/ │ │ └── main/ │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings/ │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── bin/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── ExampleWeatherActivity.apk │ │ │ ├── classes.dex │ │ │ ├── dexedLibs/ │ │ │ │ ├── annotations-3f671648eabb6a7168130867f2540da9.jar │ │ │ │ └── pebblekit-2.6.0-beta2-eclipse-3103148405a0d219b82d1f3520f07e33.jar │ │ │ ├── jarlist.cache │ │ │ └── resources.ap_ │ │ ├── gen/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── PebbleKitExample/ │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ │ ├── java/ │ │ │ └── com/ │ │ │ └── example/ │ │ │ └── PebbleKitExample/ │ │ │ └── ExampleWeatherActivity.java │ │ ├── libs/ │ │ │ └── pebblekit-2.6.0-beta2-eclipse.jar │ │ ├── project.properties │ │ └── res/ │ │ ├── layout/ │ │ │ └── activity_weather.xml │ │ └── values/ │ │ └── strings.xml │ ├── build.gradle │ ├── build.xml │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── libs/ │ │ ├── android-support-v4.jar │ │ └── gcm.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res/ │ │ ├── layout/ │ │ │ ├── activity_gcm.xml │ │ │ ├── activity_golf.xml │ │ │ ├── activity_sms.xml │ │ │ ├── activity_sports.xml │ │ │ ├── activity_todo_list.xml │ │ │ ├── activity_weather.xml │ │ │ ├── checkable_main.xml │ │ │ ├── dialog_add_todo_item.xml │ │ │ └── list_item_checkable.xml │ │ ├── menu/ │ │ │ └── options_menu.xml │ │ └── values/ │ │ ├── dimens.xml │ │ ├── dslv_attrs.xml │ │ ├── ids.xml │ │ └── strings.xml │ ├── settings.gradle │ └── src/ │ └── com/ │ ├── example/ │ │ └── PebbleKitExample/ │ │ ├── ExampleGCMActivity.java │ │ ├── ExampleGolfActivity.java │ │ ├── ExampleSmsActivity.java │ │ ├── ExampleSportsActivity.java │ │ ├── ExampleWeatherActivity.java │ │ ├── GCMIntentService.java │ │ ├── MainActivity.java │ │ └── TodoList/ │ │ ├── CheckableLinearLayout.java │ │ ├── ExampleTodoListActivity.java │ │ ├── TodoListAdapter.java │ │ └── TodoListItem.java │ └── mobeta/ │ └── android/ │ └── dslv/ │ ├── DragSortController.java │ ├── DragSortCursorAdapter.java │ ├── DragSortItemView.java │ ├── DragSortItemViewCheckable.java │ ├── DragSortListView.java │ ├── ResourceDragSortCursorAdapter.java │ ├── SimpleDragSortCursorAdapter.java │ └── SimpleFloatViewManager.java ├── WeatherDemo-iOS/ │ ├── Podfile │ ├── Pods/ │ │ ├── PebbleKit/ │ │ │ ├── PebbleKit.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ ├── PebbleKit │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ │ ├── PBLog.h │ │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ │ └── gtypes.h │ │ │ │ │ └── PebbleKit │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── NSDictionary+Pebble.h │ │ │ │ │ ├── NSNumber+stdint.h │ │ │ │ │ ├── PBBitmap.h │ │ │ │ │ ├── PBDataLoggingService.h │ │ │ │ │ ├── PBErrors.h │ │ │ │ │ ├── PBLog.h │ │ │ │ │ ├── PBPebbleCentral.h │ │ │ │ │ ├── PBWatch+AppMessages.h │ │ │ │ │ ├── PBWatch+Golf.h │ │ │ │ │ ├── PBWatch+Ping.h │ │ │ │ │ ├── PBWatch+PollServices.h │ │ │ │ │ ├── PBWatch+Sports.h │ │ │ │ │ ├── PBWatch+Version.h │ │ │ │ │ ├── PBWatch.h │ │ │ │ │ ├── PebbleKit.h │ │ │ │ │ └── gtypes.h │ │ │ │ └── PebbleKit │ │ │ ├── PebbleVendor.framework/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ ├── PebbleVendor │ │ │ │ └── Versions/ │ │ │ │ ├── A/ │ │ │ │ │ ├── Headers/ │ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ │ ├── DDLog.h │ │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ │ └── PebbleVendor │ │ │ │ └── Current/ │ │ │ │ ├── Headers/ │ │ │ │ │ ├── CHMultiDictionary.h │ │ │ │ │ ├── CHMutableDictionary.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDTTYLogger.h │ │ │ │ │ ├── NSJSONSerialization+ObjectWithNString.h │ │ │ │ │ ├── NSJSONSerialization+PBJSONHelpers.h │ │ │ │ │ ├── NSString+HexData.h │ │ │ │ │ └── UIDevice-Hardware.h │ │ │ │ └── PebbleVendor │ │ │ └── Readme.md │ │ ├── Pods-PebbleKit-Private.xcconfig │ │ ├── Pods-PebbleKit-dummy.m │ │ ├── Pods-PebbleKit-prefix.pch │ │ ├── Pods-PebbleKit.xcconfig │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.xcconfig │ │ └── Pods.xcodeproj/ │ │ └── project.pbxproj │ ├── WeatherDemo/ │ │ ├── WDAppDelegate.h │ │ ├── WDAppDelegate.m │ │ ├── WeatherDemo-Info.plist │ │ ├── WeatherDemo-Prefix.pch │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── WeatherDemo.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── WeatherDemo.xccheckout │ └── WeatherDemo.xcworkspace/ │ └── contents.xcworkspacedata └── weather/ ├── appinfo.json ├── src/ │ └── weather.c └── wscript