├── common ├── .gitignore ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── sk │ │ │ └── trupici │ │ │ └── gwatch │ │ │ └── wear │ │ │ └── common │ │ │ ├── data │ │ │ ├── Packet.java │ │ │ ├── Trend.java │ │ │ ├── TLV.java │ │ │ ├── PacketType.java │ │ │ ├── PacketBase.java │ │ │ └── ConfigPacket.java │ │ │ └── util │ │ │ └── CommonConstants.java │ │ └── res │ │ └── values │ │ └── strings.xml └── build.gradle ├── mobile ├── .gitignore ├── debug │ ├── mobile-debug.apk │ └── output-metadata.json ├── src │ └── main │ │ ├── res │ │ ├── drawable │ │ │ ├── ic_gwatch.png │ │ │ ├── portfolio.png │ │ │ ├── designer_logo.png │ │ │ ├── ic_watch_18dp.png │ │ │ ├── ic_watch_24dp.png │ │ │ ├── widget_preview.png │ │ │ ├── ic_baseline_expand_less_24.xml │ │ │ └── ic_baseline_expand_more_24.xml │ │ ├── drawable-hdpi │ │ │ ├── ic_clear.png │ │ │ ├── ic_info.png │ │ │ ├── ic_send.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_watch.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_console_24.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_stat_name.png │ │ │ ├── ic_image_search.png │ │ │ ├── ic_sync_problem.png │ │ │ ├── ic_action_gwatch.png │ │ │ ├── ic_search_folder.png │ │ │ └── ic_action_gwatch_holo_dark.png │ │ ├── drawable-mdpi │ │ │ ├── ic_clear.png │ │ │ ├── ic_info.png │ │ │ ├── ic_send.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_watch.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_console_24.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_stat_name.png │ │ │ ├── ic_image_search.png │ │ │ ├── ic_sync_problem.png │ │ │ ├── ic_action_gwatch.png │ │ │ ├── ic_search_folder.png │ │ │ └── ic_action_gwatch_holo_dark.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_info.png │ │ │ ├── ic_send.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_clear.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_watch.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_stat_name.png │ │ │ ├── ic_console_24.png │ │ │ ├── ic_action_gwatch.png │ │ │ ├── ic_image_search.png │ │ │ ├── ic_search_folder.png │ │ │ ├── ic_sync_problem.png │ │ │ └── ic_action_gwatch_holo_dark.png │ │ ├── mipmap-hdpi │ │ │ ├── ic_gwatch.png │ │ │ ├── ic_gwatch_round.png │ │ │ ├── ic_gwatch_background.png │ │ │ └── ic_gwatch_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_gwatch.png │ │ │ ├── ic_gwatch_round.png │ │ │ ├── ic_gwatch_background.png │ │ │ └── ic_gwatch_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_gwatch.png │ │ │ ├── ic_gwatch_round.png │ │ │ ├── ic_gwatch_background.png │ │ │ └── ic_gwatch_foreground.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_clear.png │ │ │ ├── ic_info.png │ │ │ ├── ic_send.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_watch.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_console_24.png │ │ │ ├── ic_stat_name.png │ │ │ ├── ic_action_gwatch.png │ │ │ ├── ic_image_search.png │ │ │ ├── ic_search_folder.png │ │ │ ├── ic_sync_problem.png │ │ │ └── ic_action_gwatch_holo_dark.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_info.png │ │ │ ├── ic_send.png │ │ │ ├── ic_stop.png │ │ │ ├── ic_clear.png │ │ │ ├── ic_delete.png │ │ │ ├── ic_watch.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_stat_name.png │ │ │ ├── ic_console_24.png │ │ │ ├── ic_image_search.png │ │ │ ├── ic_sync_problem.png │ │ │ ├── ic_action_gwatch.png │ │ │ ├── ic_search_folder.png │ │ │ └── ic_action_gwatch_holo_dark.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_gwatch.png │ │ │ ├── ic_gwatch_round.png │ │ │ ├── ic_gwatch_background.png │ │ │ └── ic_gwatch_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_gwatch.png │ │ │ ├── ic_gwatch_round.png │ │ │ ├── ic_gwatch_background.png │ │ │ └── ic_gwatch_foreground.png │ │ ├── xml │ │ │ ├── locales_config.xml │ │ │ ├── wear.xml │ │ │ ├── widget_info.xml │ │ │ └── pref_main.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_gwatch.xml │ │ │ └── ic_gwatch_round.xml │ │ ├── layout │ │ │ ├── analog_settings_activity.xml │ │ │ ├── layout_tab_test.xml │ │ │ ├── pref_time_picker_dialog.xml │ │ │ ├── activity_settings.xml │ │ │ └── packet_console_layout.xml │ │ ├── anim │ │ │ ├── no_anim.xml │ │ │ ├── slide_in_left.xml │ │ │ ├── slide_in_right.xml │ │ │ ├── slide_out_left.xml │ │ │ └── slide_out_right.xml │ │ ├── values │ │ │ ├── arrays.xml │ │ │ └── styles.xml │ │ └── menu │ │ │ ├── menu_packet_view.xml │ │ │ ├── menu_main.xml │ │ │ └── menu_settings.xml │ │ └── java │ │ └── sk │ │ └── trupici │ │ └── gwatch │ │ └── wear │ │ ├── util │ │ ├── CommonConstants.java │ │ ├── AndroidUtils.java │ │ └── IoUtils.java │ │ ├── console │ │ ├── PacketConsoleView.java │ │ └── PacketConsole.java │ │ ├── settings │ │ ├── ConfigType.java │ │ ├── fragment │ │ │ ├── GlucoseLevelsFragment.java │ │ │ ├── AppWidgetTextFragment.java │ │ │ ├── MainFragment.java │ │ │ ├── AppWidgetFragment.java │ │ │ ├── AppWidgetTrendIndicatorFragment.java │ │ │ └── AppWidgetGraphFragment.java │ │ ├── ValuePreference.java │ │ ├── ConfigData.java │ │ └── PreferenceMap.java │ │ ├── dispatch │ │ └── Dispatcher.java │ │ ├── followers │ │ ├── CommunicationException.java │ │ └── TooManyRequestsException.java │ │ ├── widget │ │ └── WidgetProvider.java │ │ ├── data │ │ ├── SyncPacket.java │ │ └── Queue.java │ │ ├── receivers │ │ ├── ExplicitBgBroadcastReceiver.java │ │ └── BootReceiver.java │ │ └── view │ │ └── HorizontalSwipeDetector.java └── proguard-rules.pro ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── wearable ├── libs │ └── holocolorpicker-2.0.aar ├── src │ └── main │ │ ├── res │ │ ├── raw │ │ │ ├── alarm_high.ogg │ │ │ ├── alarm_low.ogg │ │ │ ├── alarm_nodata.ogg │ │ │ ├── alarm_critical.ogg │ │ │ └── alarm_fastdrop.ogg │ │ ├── drawable │ │ │ ├── drop_48.png │ │ │ ├── frame_50.png │ │ │ ├── alarm_dismiss_48.png │ │ │ ├── alarm_snooze_48.png │ │ │ ├── config_more_items.png │ │ │ ├── config_border_rect_24.png │ │ │ ├── config_color_edit_24.png │ │ │ ├── config_no_border_24.png │ │ │ ├── config_add_complication.png │ │ │ ├── config_border_circle_24.png │ │ │ ├── config_border_rect_dash_24.png │ │ │ ├── config_border_rect_dot_24.png │ │ │ ├── config_border_circle_dash_24.png │ │ │ ├── config_border_circle_dot_24.png │ │ │ ├── config_border_round_rect_24.png │ │ │ ├── config_border_round_rect_dot_24.png │ │ │ ├── config_border_round_rect_dash_24.png │ │ │ └── alarm_button.xml │ │ ├── drawable-nodpi │ │ │ ├── empty.png │ │ │ ├── circle_10.png │ │ │ ├── circle_8.png │ │ │ ├── seconds_1.png │ │ │ ├── hands_1_preview.png │ │ │ ├── hours_classic.png │ │ │ ├── hours_default.png │ │ │ ├── minutes_classic.png │ │ │ ├── minutes_default.png │ │ │ ├── preview_analog.png │ │ │ ├── preview_digital.png │ │ │ ├── seconds_classic.png │ │ │ ├── seconds_default.png │ │ │ ├── hours_classic_shadow.png │ │ │ ├── hours_shadow_default.png │ │ │ ├── hands_classic_preview.png │ │ │ ├── hands_default_preview.png │ │ │ ├── minutes_classic_shadow.png │ │ │ ├── minutes_shadow_default.png │ │ │ ├── seconds_classic_shadow.png │ │ │ ├── seconds_shadow_default.png │ │ │ ├── digital_pure_background_1.png │ │ │ ├── analog_active_background_1.png │ │ │ ├── analog_active_background_2.png │ │ │ ├── analog_classic_background_1.png │ │ │ ├── analog_classic_background_2.png │ │ │ ├── digital_background_default.png │ │ │ └── analog_active_background_default.png │ │ ├── mipmap-hdpi │ │ │ └── ic_gwatch.png │ │ ├── mipmap-mdpi │ │ │ └── ic_gwatch.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_gwatch.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_gwatch.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_gwatch.png │ │ ├── xml │ │ │ ├── analog_watchface.xml │ │ │ ├── digital_watchface.xml │ │ │ └── wear.xml │ │ ├── layout │ │ │ ├── config_list_border_item.xml │ │ │ ├── config_list_button_item.xml │ │ │ ├── config_list_empty_item.xml │ │ │ ├── config_list_switch_item.xml │ │ │ ├── layout_border_picker.xml │ │ │ ├── layout_config_main.xml │ │ │ ├── layout_config_page2.xml │ │ │ ├── layout_config_page.xml │ │ │ ├── config_list_complication_item.xml │ │ │ └── layout_config_item_page.xml │ │ └── values │ │ │ ├── complications.xml │ │ │ ├── digital_time_panel.xml │ │ │ ├── date_panel.xml │ │ │ ├── bg_panel.xml │ │ │ ├── layout_dimens.xml │ │ │ ├── bg_graph.xml │ │ │ ├── color.xml │ │ │ ├── styles.xml │ │ │ └── color_picker.xml │ │ └── java │ │ └── sk │ │ └── trupici │ │ └── gwatch │ │ └── wear │ │ ├── config │ │ ├── BackgroundChangeAware.java │ │ ├── item │ │ │ ├── PaddingConfigItem.java │ │ │ ├── BoolConfigItem.java │ │ │ ├── BorderConfigItem.java │ │ │ ├── ConfigItem.java │ │ │ └── BasicConfigItem.java │ │ ├── ProviderInfoRetrieverActivity.java │ │ ├── complications │ │ │ ├── ComplicationConfigItem.java │ │ │ ├── ComplicationId.java │ │ │ ├── ComplicationsConfigViewHolder.java │ │ │ └── AnalogComplicationViewHolder.java │ │ ├── ActivityResultAware.java │ │ ├── ConfigItemData.java │ │ ├── BorderType.java │ │ ├── ConfigPageData.java │ │ ├── ConfigItemListPageViewHolder.java │ │ ├── SwitchViewHolder.java │ │ ├── PickerViewHolder.java │ │ ├── HandsConfigData.java │ │ └── menu │ │ │ ├── ComplicationsMenuItems.java │ │ │ └── BorderTypeMenuItems.java │ │ ├── data │ │ ├── ConfigType.java │ │ └── ConfigData.java │ │ ├── components │ │ ├── ComponentPanel.java │ │ └── BgGraphView.java │ │ └── util │ │ ├── CommonConstants.java │ │ └── UiUtils.java ├── proguard-rules.pro ├── .gitignore └── build.gradle ├── settings.gradle ├── gradle.properties ├── .gitignore └── README.md /common/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /mobile/debug/mobile-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/debug/mobile-debug.apk -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /wearable/libs/holocolorpicker-2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/libs/holocolorpicker-2.0.aar -------------------------------------------------------------------------------- /wearable/src/main/res/raw/alarm_high.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/raw/alarm_high.ogg -------------------------------------------------------------------------------- /wearable/src/main/res/raw/alarm_low.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/raw/alarm_low.ogg -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/portfolio.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/drop_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/drop_48.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/frame_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/frame_50.png -------------------------------------------------------------------------------- /wearable/src/main/res/raw/alarm_nodata.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/raw/alarm_nodata.ogg -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_clear.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_info.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_send.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_watch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_clear.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_info.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_send.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_stop.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_watch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_info.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_send.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_stop.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/designer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/designer_logo.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_watch_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/ic_watch_18dp.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_watch_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/ic_watch_24dp.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-hdpi/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-mdpi/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/empty.png -------------------------------------------------------------------------------- /wearable/src/main/res/raw/alarm_critical.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/raw/alarm_critical.ogg -------------------------------------------------------------------------------- /wearable/src/main/res/raw/alarm_fastdrop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/raw/alarm_fastdrop.ogg -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_delete.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_clear.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_delete.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_watch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_clear.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_info.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_send.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_stop.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_watch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_info.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_send.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_stop.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable/widget_preview.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-hdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/mipmap-hdpi/ic_gwatch.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-mdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/mipmap-mdpi/ic_gwatch.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/mipmap-xhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_console_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_console_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_stat_name.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_console_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_console_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_settings.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_stat_name.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_stat_name.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_delete.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_settings.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_clear.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_delete.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_watch.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_gwatch_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-hdpi/ic_gwatch_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_gwatch_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-mdpi/ic_gwatch_round.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/circle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/circle_10.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/circle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/circle_8.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/seconds_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/seconds_1.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/alarm_dismiss_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/alarm_dismiss_48.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/alarm_snooze_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/alarm_snooze_48.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xxhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/mipmap-xxhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xxxhdpi/ic_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/mipmap-xxxhdpi/ic_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_image_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_image_search.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_sync_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_sync_problem.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_image_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_image_search.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_sync_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_sync_problem.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_console_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_console_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_console_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_console_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_stat_name.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_settings.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_stat_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_stat_name.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_gwatch_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_gwatch_round.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_round.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_more_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_more_items.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_action_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_action_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_search_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_search_folder.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_action_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_action_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_search_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_search_folder.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_action_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_action_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_image_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_image_search.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_search_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_search_folder.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_sync_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_sync_problem.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_action_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_action_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_image_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_image_search.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_search_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_search_folder.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_sync_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_sync_problem.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_console_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_console_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_image_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_image_search.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_sync_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_sync_problem.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_gwatch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-hdpi/ic_gwatch_background.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-hdpi/ic_gwatch_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-hdpi/ic_gwatch_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_gwatch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-mdpi/ic_gwatch_background.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-mdpi/ic_gwatch_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-mdpi/ic_gwatch_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_round.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hands_1_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hands_1_preview.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hours_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hours_classic.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hours_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hours_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/minutes_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/minutes_classic.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/minutes_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/minutes_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/preview_analog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/preview_analog.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/preview_digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/preview_digital.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/seconds_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/seconds_classic.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/seconds_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/seconds_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_rect_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_rect_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_color_edit_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_color_edit_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_no_border_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_no_border_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_action_gwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_action_gwatch.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_search_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_search_folder.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_gwatch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_gwatch_background.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xhdpi/ic_gwatch_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xhdpi/ic_gwatch_foreground.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_background.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxhdpi/ic_gwatch_foreground.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_add_complication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_add_complication.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_circle_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_circle_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_background.png -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/mipmap-xxxhdpi/ic_gwatch_foreground.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hours_classic_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hours_classic_shadow.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hours_shadow_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hours_shadow_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_rect_dash_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_rect_dash_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_rect_dot_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_rect_dot_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hands_classic_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hands_classic_preview.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/hands_default_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/hands_default_preview.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/minutes_classic_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/minutes_classic_shadow.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/minutes_shadow_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/minutes_shadow_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/seconds_classic_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/seconds_classic_shadow.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/seconds_shadow_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/seconds_shadow_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_circle_dash_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_circle_dash_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_circle_dot_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_circle_dot_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_round_rect_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_round_rect_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-hdpi/ic_action_gwatch_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-hdpi/ic_action_gwatch_holo_dark.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-mdpi/ic_action_gwatch_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-mdpi/ic_action_gwatch_holo_dark.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xhdpi/ic_action_gwatch_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xhdpi/ic_action_gwatch_holo_dark.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxhdpi/ic_action_gwatch_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxhdpi/ic_action_gwatch_holo_dark.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/digital_pure_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/digital_pure_background_1.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_round_rect_dot_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_round_rect_dot_24.png -------------------------------------------------------------------------------- /mobile/src/main/res/drawable-xxxhdpi/ic_action_gwatch_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/mobile/src/main/res/drawable-xxxhdpi/ic_action_gwatch_holo_dark.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/analog_active_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/analog_active_background_1.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/analog_active_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/analog_active_background_2.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/analog_classic_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/analog_classic_background_1.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/analog_classic_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/analog_classic_background_2.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/digital_background_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/digital_background_default.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/config_border_round_rect_dash_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable/config_border_round_rect_dash_24.png -------------------------------------------------------------------------------- /wearable/src/main/res/drawable-nodpi/analog_active_background_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trupici/G-Watch-Wear/HEAD/wearable/src/main/res/drawable-nodpi/analog_active_background_default.png -------------------------------------------------------------------------------- /common/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/alarm_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mobile/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Sep 11 19:32:29 CEST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_gwatch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mobile/src/main/res/mipmap-anydpi-v26/ic_gwatch_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_baseline_expand_less_24.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /mobile/src/main/res/drawable/ic_baseline_expand_more_24.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | dependencyResolutionManagement { 2 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 3 | repositories { 4 | google() 5 | mavenCentral() 6 | maven { url 'https://jitpack.io' } 7 | maven { url "https://maven.localazy.com/repository/release/" } 8 | } 9 | } 10 | rootProject.name = "G-Watch Wear App" 11 | include ':mobile' 12 | include ':wearable' 13 | include ':common' 14 | -------------------------------------------------------------------------------- /mobile/debug/output-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "artifactType": { 4 | "type": "APK", 5 | "kind": "Directory" 6 | }, 7 | "applicationId": "sk.trupici.gwatch.wear", 8 | "variantName": "debug", 9 | "elements": [ 10 | { 11 | "type": "SINGLE", 12 | "filters": [], 13 | "attributes": [], 14 | "versionCode": 1, 15 | "versionName": "1.0", 16 | "outputFile": "mobile-debug.apk" 17 | } 18 | ], 19 | "elementType": "File" 20 | } -------------------------------------------------------------------------------- /mobile/src/main/res/layout/analog_settings_activity.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /wearable/src/main/res/xml/analog_watchface.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | -------------------------------------------------------------------------------- /wearable/src/main/res/xml/digital_watchface.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | -------------------------------------------------------------------------------- /mobile/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /wearable/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /mobile/src/main/res/xml/wear.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | verify_remote_gwatch_phone_app 20 | 21 | -------------------------------------------------------------------------------- /mobile/src/main/res/layout/layout_tab_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 19 | -------------------------------------------------------------------------------- /mobile/src/main/java/sk/trupici/gwatch/wear/util/CommonConstants.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 Juraj Antal 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package sk.trupici.gwatch.wear.util; 18 | 19 | public interface CommonConstants { 20 | String PREF_IS_UNIT_CONVERSION = "cfg_glucose_units_conversion"; 21 | String PREF_NO_DATA_THRESHOLD = "bg_threshold_no_data"; 22 | } 23 | -------------------------------------------------------------------------------- /wearable/src/main/java/sk/trupici/gwatch/wear/config/BackgroundChangeAware.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 Juraj Antal 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package sk.trupici.gwatch.wear.config; 18 | 19 | /** 20 | * Interface for {@code ViewHolder}s supporting background layer 21 | */ 22 | public interface BackgroundChangeAware { 23 | void onBackgroundChanged(); 24 | } 25 | -------------------------------------------------------------------------------- /wearable/src/main/java/sk/trupici/gwatch/wear/data/ConfigType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 Juraj Antal 3 | * 4 | * Originally created in G-Watch App 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package sk.trupici.gwatch.wear.data; 19 | 20 | public enum ConfigType { 21 | BYTE, 22 | WORD, 23 | DWORD, 24 | COLOR, 25 | BOOLEAN, 26 | STRING, 27 | FLOAT 28 | } 29 | -------------------------------------------------------------------------------- /mobile/src/main/java/sk/trupici/gwatch/wear/console/PacketConsoleView.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 Juraj Antal 3 | * 4 | * Originally created in G-Watch App 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package sk.trupici.gwatch.wear.console; 20 | 21 | public interface PacketConsoleView { 22 | void setText(String text); 23 | void setConnectionStatus(Boolean isConnected); 24 | } 25 | -------------------------------------------------------------------------------- /mobile/src/main/java/sk/trupici/gwatch/wear/settings/ConfigType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2019 Juraj Antal 3 | * 4 | * Originally created in G-Watch App 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | package sk.trupici.gwatch.wear.settings; 19 | 20 | public enum ConfigType { 21 | BYTE, 22 | WORD, 23 | DWORD, 24 | COLOR, 25 | BOOLEAN, 26 | STRING, 27 | FLOAT 28 | } 29 | -------------------------------------------------------------------------------- /wearable/src/main/java/sk/trupici/gwatch/wear/config/item/PaddingConfigItem.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2021 Juraj Antal 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package sk.trupici.gwatch.wear.config.item; 18 | 19 | public class PaddingConfigItem implements ConfigItem { 20 | 21 | @Override 22 | public Type getConfigType() { 23 | return Type.TYPE_PADDING; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /wearable/src/main/res/xml/wear.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 19 | 20 | verify_remote_gwatch_wear_app 21 | 22 | -------------------------------------------------------------------------------- /mobile/src/main/res/anim/no_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 24 | 25 | -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 24 | 25 | -------------------------------------------------------------------------------- /mobile/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 24 | 25 | -------------------------------------------------------------------------------- /wearable/src/main/res/layout/config_list_border_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 |