├── .gitignore ├── COPYING ├── README.md ├── api ├── build.gradle ├── javadoc-scripts │ ├── .gitignore │ ├── generate_javadoc.bat │ ├── generate_javadoc.sh │ ├── index.html │ ├── javadoc_stylesheet.css │ ├── prettify.css │ ├── prettify.js │ └── tweak_javadoc_html.py └── src │ └── main │ ├── aidl │ └── com │ │ └── google │ │ └── android │ │ └── apps │ │ └── dashclock │ │ └── api │ │ ├── ExtensionData.aidl │ │ ├── host │ │ └── ExtensionListing.aidl │ │ └── internal │ │ ├── IDataConsumerHost.aidl │ │ ├── IDataConsumerHostCallback.aidl │ │ ├── IExtension.aidl │ │ └── IExtensionHost.aidl │ └── java │ └── com │ └── google │ └── android │ └── apps │ └── dashclock │ └── api │ ├── DashClockExtension.java │ ├── DashClockSignature.java │ ├── ExtensionData.java │ ├── host │ ├── DashClockHost.java │ ├── ExtensionListing.java │ └── package-info.java │ └── package-info.java ├── art ├── analog.psd ├── archive │ └── launcher.psd ├── icon.ai ├── icon.psd ├── other_icons.psd ├── teaser.png ├── teaser_appearance.png ├── weather_icons.psd ├── white_icon.ai ├── white_icon.psd └── widget_preview.psd ├── example-extension ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── dashclock │ │ └── exampleextension │ │ ├── ExampleExtension.java │ │ └── ExampleSettingsActivity.java │ └── res │ ├── drawable-xhdpi │ └── ic_extension_example.png │ ├── values │ └── strings.xml │ └── xml │ └── pref_example.xml ├── example-host ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── example │ │ └── dashclock │ │ └── examplehost │ │ └── ExampleHostActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_mux_dialog_icon.png │ ├── drawable-mdpi │ └── ic_mux_dialog_icon.png │ ├── drawable-xhdpi │ ├── ic_host_example.png │ ├── ic_mux_dialog_icon.png │ ├── ic_readable_extension.png │ └── ic_settings.png │ ├── drawable-xxhdpi │ └── ic_mux_dialog_icon.png │ ├── drawable-xxxhdpi │ └── ic_mux_dialog_icon.png │ ├── layout │ ├── extension_item.xml │ └── main.xml │ ├── menu │ └── main.xml │ ├── values-es │ └── strings.xml │ └── values │ └── strings.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystore.properties.example ├── local.properties.example ├── main ├── build.gradle ├── lint.xml ├── proguard-project.txt ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ └── apps │ │ │ └── dashclock │ │ │ ├── BackupAgent.java │ │ │ ├── DashClockService.java │ │ │ ├── DaydreamService.java │ │ │ ├── EnableForceWorldReadableDialogActivity.java │ │ │ ├── ExtensionHost.java │ │ │ ├── ExtensionManager.java │ │ │ ├── ExtensionPackageChangeReceiver.java │ │ │ ├── ExtensionSettingActivityProxy.java │ │ │ ├── HelpUtils.java │ │ │ ├── LogAttachmentProvider.java │ │ │ ├── LogUtils.java │ │ │ ├── MultiplexerOnlyModeReceiver.java │ │ │ ├── PeriodicExtensionRefreshReceiver.java │ │ │ ├── RecentTasksStyler.java │ │ │ ├── Utils.java │ │ │ ├── WidgetClickProxyActivity.java │ │ │ ├── WidgetProvider.java │ │ │ ├── calendar │ │ │ ├── CalendarExtension.java │ │ │ ├── CalendarSelectionPreference.java │ │ │ └── CalendarSettingsActivity.java │ │ │ ├── configuration │ │ │ ├── AppChooserPreference.java │ │ │ ├── AppearanceConfig.java │ │ │ ├── BaseSettingsActivity.java │ │ │ ├── ColorPreference.java │ │ │ ├── ConfigurationActivity.java │ │ │ ├── ConfigureAdvancedFragment.java │ │ │ ├── ConfigureAppearanceFragment.java │ │ │ ├── ConfigureAppearanceMoreFragment.java │ │ │ ├── ConfigureDaydreamFragment.java │ │ │ ├── ConfigureExtensionsFragment.java │ │ │ └── DaydreamProxyActivity.java │ │ │ ├── gmail │ │ │ ├── GmailContract.java │ │ │ ├── GmailExtension.java │ │ │ └── GmailSettingsActivity.java │ │ │ ├── nextalarm │ │ │ ├── NextAlarmExtension.java │ │ │ └── NextAlarmSettingsActivity.java │ │ │ ├── phone │ │ │ ├── MissedCallsExtension.java │ │ │ ├── SmsExtension.java │ │ │ └── TelephonyProviderConstants.java │ │ │ ├── render │ │ │ ├── DashClockRenderer.java │ │ │ ├── SimpleRenderer.java │ │ │ ├── SimpleViewBuilder.java │ │ │ ├── ViewBuilder.java │ │ │ ├── WidgetRemoteViewsFactoryService.java │ │ │ ├── WidgetRenderer.java │ │ │ └── WidgetViewBuilder.java │ │ │ ├── ui │ │ │ ├── DragGripView.java │ │ │ ├── PagerPositionStrip.java │ │ │ ├── SimplePagedTabsHelper.java │ │ │ ├── SwipeDismissListViewTouchListener.java │ │ │ └── UndoBarController.java │ │ │ └── weather │ │ │ ├── CantGetWeatherException.java │ │ │ ├── WeatherData.java │ │ │ ├── WeatherExtension.java │ │ │ ├── WeatherLocationPreference.java │ │ │ ├── WeatherRetryReceiver.java │ │ │ ├── WeatherSettingsActivity.java │ │ │ ├── YahooWeatherApiClient.java │ │ │ └── YahooWeatherApiConfig.java │ │ └── res │ │ ├── anim-v21 │ │ └── fab_state_list_anim.xml │ │ ├── drawable-nodpi │ │ ├── analog1_black_dial.png │ │ ├── analog1_black_hour.png │ │ ├── analog1_black_minute.png │ │ ├── analog1_white_dial.png │ │ ├── analog1_white_hour.png │ │ ├── analog1_white_minute.png │ │ ├── analog2_black_dial.png │ │ ├── analog2_black_hour.png │ │ ├── analog2_black_minute.png │ │ ├── analog2_white_dial.png │ │ ├── analog2_white_hour.png │ │ ├── analog2_white_minute.png │ │ ├── ic_extension_calendar.png │ │ ├── ic_extension_gmail.png │ │ ├── ic_extension_missed_calls.png │ │ ├── ic_extension_next_alarm.png │ │ ├── ic_extension_sms.png │ │ ├── ic_extension_voicemail.png │ │ ├── ic_weather_clear.png │ │ ├── ic_weather_cloudy.png │ │ ├── ic_weather_foggy.png │ │ ├── ic_weather_partly_cloudy.png │ │ ├── ic_weather_raining.png │ │ ├── ic_weather_snow.png │ │ ├── ic_weather_sunny.png │ │ ├── ic_weather_windy.png │ │ └── widget_preview.png │ │ ├── drawable-v21 │ │ └── white_selectable_item_background_circle.xml │ │ ├── drawable-xxhdpi │ │ ├── checkmark_black.png │ │ ├── checkmark_white.png │ │ ├── collapsed_extension_ellipsis.png │ │ ├── configure_appearance_arrow.png │ │ ├── ic_action_done.png │ │ ├── ic_configure_item_overflow.png │ │ ├── ic_fab_add.png │ │ ├── ic_widget_action_settings.png │ │ ├── large_icon.png │ │ └── spinner_triangle.png │ │ ├── drawable │ │ ├── add_fab_background.xml │ │ ├── undobar.xml │ │ └── white_selectable_item_background_circle.xml │ │ ├── layout-land │ │ └── daydream.xml │ │ ├── layout-sw600dp │ │ └── dialog_about.xml │ │ ├── layout │ │ ├── activity_configure.xml │ │ ├── activity_extension_configuration_simple.xml │ │ ├── daydream.xml │ │ ├── dialog_about.xml │ │ ├── dialog_app_chooser.xml │ │ ├── dialog_colors.xml │ │ ├── dialog_weather_location_chooser.xml │ │ ├── fragment_configure_appearance.xml │ │ ├── fragment_configure_appearance_more.xml │ │ ├── fragment_configure_extension_simple_prefs.xml │ │ ├── fragment_configure_extensions.xml │ │ ├── fragment_configure_simple_prefs.xml │ │ ├── grid_item_color.xml │ │ ├── list_item_calendar.xml │ │ ├── list_item_configure_ab_spinner.xml │ │ ├── list_item_configure_ab_spinner_dropdown.xml │ │ ├── list_item_extension.xml │ │ ├── list_item_intent.xml │ │ ├── list_item_weather_location_result.xml │ │ ├── pref_layout_color.xml │ │ ├── preference.xml │ │ ├── preference_category.xml │ │ ├── preference_widget_checkbox.xml │ │ ├── tab.xml │ │ ├── widget_include_clock.xml │ │ ├── widget_include_collapsed_ellipsis.xml │ │ ├── widget_include_collapsed_extension.xml │ │ ├── widget_include_collapsed_extension_interactive.xml │ │ ├── widget_include_collapsed_list.xml │ │ ├── widget_include_date_style_condensed_bold.xml │ │ ├── widget_include_date_style_default.xml │ │ ├── widget_include_date_style_simple.xml │ │ ├── widget_include_time_style_alpha.xml │ │ ├── widget_include_time_style_analog1_black.xml │ │ ├── widget_include_time_style_analog1_white.xml │ │ ├── widget_include_time_style_analog2_black.xml │ │ ├── widget_include_time_style_analog2_white.xml │ │ ├── widget_include_time_style_big_small.xml │ │ ├── widget_include_time_style_condensed.xml │ │ ├── widget_include_time_style_default.xml │ │ ├── widget_include_time_style_light.xml │ │ ├── widget_include_time_style_stock.xml │ │ ├── widget_list_item_expanded_extension.xml │ │ ├── widget_list_item_expanded_extension_loading.xml │ │ ├── widget_main_collapsed.xml │ │ ├── widget_main_collapsed_forced_center.xml │ │ ├── widget_main_collapsed_forced_center_lockscreen.xml │ │ ├── widget_main_expanded.xml │ │ └── widget_main_expanded_forced_center.xml │ │ ├── menu │ │ ├── configure_item_overflow.xml │ │ └── configure_overflow.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_white.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_white.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_white.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_white.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_white.png │ │ ├── values-cs │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-de │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-el-rGR │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-es │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-fr │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-hu │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-it │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-ja │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-ko │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-nl │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-pl │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-ru │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-sk │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-sw360dp │ │ ├── clock_metrics.xml │ │ └── dimens.xml │ │ ├── values-sw600dp │ │ ├── clock_metrics.xml │ │ ├── dimens.xml │ │ └── styles.xml │ │ ├── values-sw720dp-land │ │ └── clock_metrics.xml │ │ ├── values-uk │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-v21 │ │ ├── fonts.xml │ │ └── styles.xml │ │ ├── values-zh-rCN │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ ├── pref_strings.xml │ │ └── strings.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── clock_metrics.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── fonts.xml │ │ ├── ids.xml │ │ ├── integers.xml │ │ ├── pref_strings.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── daydream_info.xml │ │ ├── pref_advanced.xml │ │ ├── pref_appearance.xml │ │ ├── pref_calendar.xml │ │ ├── pref_daydream.xml │ │ ├── pref_gmail.xml │ │ ├── pref_nextalarm.xml │ │ ├── pref_weather.xml │ │ └── widget_info.xml └── version.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/README.md -------------------------------------------------------------------------------- /api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/build.gradle -------------------------------------------------------------------------------- /api/javadoc-scripts/.gitignore: -------------------------------------------------------------------------------- 1 | _locals.sh 2 | -------------------------------------------------------------------------------- /api/javadoc-scripts/generate_javadoc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/generate_javadoc.bat -------------------------------------------------------------------------------- /api/javadoc-scripts/generate_javadoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/generate_javadoc.sh -------------------------------------------------------------------------------- /api/javadoc-scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/index.html -------------------------------------------------------------------------------- /api/javadoc-scripts/javadoc_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/javadoc_stylesheet.css -------------------------------------------------------------------------------- /api/javadoc-scripts/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/prettify.css -------------------------------------------------------------------------------- /api/javadoc-scripts/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/prettify.js -------------------------------------------------------------------------------- /api/javadoc-scripts/tweak_javadoc_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/javadoc-scripts/tweak_javadoc_html.py -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/ExtensionData.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/ExtensionData.aidl -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/host/ExtensionListing.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/host/ExtensionListing.aidl -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IDataConsumerHost.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IDataConsumerHost.aidl -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IDataConsumerHostCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IDataConsumerHostCallback.aidl -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IExtension.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IExtension.aidl -------------------------------------------------------------------------------- /api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IExtensionHost.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/aidl/com/google/android/apps/dashclock/api/internal/IExtensionHost.aidl -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/DashClockExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/DashClockExtension.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/DashClockSignature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/DashClockSignature.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/ExtensionData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/ExtensionData.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/host/DashClockHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/host/DashClockHost.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/host/ExtensionListing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/host/ExtensionListing.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/host/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/host/package-info.java -------------------------------------------------------------------------------- /api/src/main/java/com/google/android/apps/dashclock/api/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/api/src/main/java/com/google/android/apps/dashclock/api/package-info.java -------------------------------------------------------------------------------- /art/analog.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/analog.psd -------------------------------------------------------------------------------- /art/archive/launcher.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/archive/launcher.psd -------------------------------------------------------------------------------- /art/icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/icon.ai -------------------------------------------------------------------------------- /art/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/icon.psd -------------------------------------------------------------------------------- /art/other_icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/other_icons.psd -------------------------------------------------------------------------------- /art/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/teaser.png -------------------------------------------------------------------------------- /art/teaser_appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/teaser_appearance.png -------------------------------------------------------------------------------- /art/weather_icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/weather_icons.psd -------------------------------------------------------------------------------- /art/white_icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/white_icon.ai -------------------------------------------------------------------------------- /art/white_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/white_icon.psd -------------------------------------------------------------------------------- /art/widget_preview.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/art/widget_preview.psd -------------------------------------------------------------------------------- /example-extension/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/build.gradle -------------------------------------------------------------------------------- /example-extension/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example-extension/src/main/java/com/example/dashclock/exampleextension/ExampleExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/java/com/example/dashclock/exampleextension/ExampleExtension.java -------------------------------------------------------------------------------- /example-extension/src/main/java/com/example/dashclock/exampleextension/ExampleSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/java/com/example/dashclock/exampleextension/ExampleSettingsActivity.java -------------------------------------------------------------------------------- /example-extension/src/main/res/drawable-xhdpi/ic_extension_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/res/drawable-xhdpi/ic_extension_example.png -------------------------------------------------------------------------------- /example-extension/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example-extension/src/main/res/xml/pref_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-extension/src/main/res/xml/pref_example.xml -------------------------------------------------------------------------------- /example-host/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/build.gradle -------------------------------------------------------------------------------- /example-host/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example-host/src/main/java/com/example/dashclock/examplehost/ExampleHostActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/java/com/example/dashclock/examplehost/ExampleHostActivity.java -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-hdpi/ic_mux_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-hdpi/ic_mux_dialog_icon.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-mdpi/ic_mux_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-mdpi/ic_mux_dialog_icon.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xhdpi/ic_host_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xhdpi/ic_host_example.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xhdpi/ic_mux_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xhdpi/ic_mux_dialog_icon.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xhdpi/ic_readable_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xhdpi/ic_readable_extension.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xxhdpi/ic_mux_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xxhdpi/ic_mux_dialog_icon.png -------------------------------------------------------------------------------- /example-host/src/main/res/drawable-xxxhdpi/ic_mux_dialog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/drawable-xxxhdpi/ic_mux_dialog_icon.png -------------------------------------------------------------------------------- /example-host/src/main/res/layout/extension_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/layout/extension_item.xml -------------------------------------------------------------------------------- /example-host/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /example-host/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /example-host/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /example-host/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/example-host/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/gradlew.bat -------------------------------------------------------------------------------- /keystore.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/keystore.properties.example -------------------------------------------------------------------------------- /local.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/local.properties.example -------------------------------------------------------------------------------- /main/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/build.gradle -------------------------------------------------------------------------------- /main/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/lint.xml -------------------------------------------------------------------------------- /main/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/proguard-project.txt -------------------------------------------------------------------------------- /main/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/BackupAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/BackupAgent.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/DashClockService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/DashClockService.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/DaydreamService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/DaydreamService.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/EnableForceWorldReadableDialogActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/EnableForceWorldReadableDialogActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ExtensionHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ExtensionHost.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ExtensionManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ExtensionManager.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ExtensionPackageChangeReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ExtensionPackageChangeReceiver.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ExtensionSettingActivityProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ExtensionSettingActivityProxy.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/HelpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/HelpUtils.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/LogAttachmentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/LogAttachmentProvider.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/LogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/LogUtils.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/MultiplexerOnlyModeReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/MultiplexerOnlyModeReceiver.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/PeriodicExtensionRefreshReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/PeriodicExtensionRefreshReceiver.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/RecentTasksStyler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/RecentTasksStyler.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/Utils.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/WidgetClickProxyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/WidgetClickProxyActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/WidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/WidgetProvider.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarSelectionPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarSelectionPreference.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/calendar/CalendarSettingsActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/AppChooserPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/AppChooserPreference.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/AppearanceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/AppearanceConfig.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/BaseSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/BaseSettingsActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ColorPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ColorPreference.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigurationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigurationActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAdvancedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAdvancedFragment.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAppearanceFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAppearanceFragment.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAppearanceMoreFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureAppearanceMoreFragment.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureDaydreamFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureDaydreamFragment.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureExtensionsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/ConfigureExtensionsFragment.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/configuration/DaydreamProxyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/configuration/DaydreamProxyActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/gmail/GmailContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/gmail/GmailContract.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/gmail/GmailExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/gmail/GmailExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/gmail/GmailSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/gmail/GmailSettingsActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/nextalarm/NextAlarmExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/nextalarm/NextAlarmExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/nextalarm/NextAlarmSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/nextalarm/NextAlarmSettingsActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/phone/MissedCallsExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/phone/MissedCallsExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/phone/SmsExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/phone/SmsExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/phone/TelephonyProviderConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/phone/TelephonyProviderConstants.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/DashClockRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/DashClockRenderer.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/SimpleRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/SimpleRenderer.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/SimpleViewBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/SimpleViewBuilder.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/ViewBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/ViewBuilder.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/WidgetRemoteViewsFactoryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/WidgetRemoteViewsFactoryService.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/WidgetRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/WidgetRenderer.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/render/WidgetViewBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/render/WidgetViewBuilder.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ui/DragGripView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ui/DragGripView.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ui/PagerPositionStrip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ui/PagerPositionStrip.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ui/SimplePagedTabsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ui/SimplePagedTabsHelper.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ui/SwipeDismissListViewTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ui/SwipeDismissListViewTouchListener.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/ui/UndoBarController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/ui/UndoBarController.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/CantGetWeatherException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/CantGetWeatherException.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/WeatherData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/WeatherData.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/WeatherExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/WeatherExtension.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/WeatherLocationPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/WeatherLocationPreference.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/WeatherRetryReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/WeatherRetryReceiver.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/WeatherSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/WeatherSettingsActivity.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/YahooWeatherApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/YahooWeatherApiClient.java -------------------------------------------------------------------------------- /main/src/main/java/com/google/android/apps/dashclock/weather/YahooWeatherApiConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/java/com/google/android/apps/dashclock/weather/YahooWeatherApiConfig.java -------------------------------------------------------------------------------- /main/src/main/res/anim-v21/fab_state_list_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/anim-v21/fab_state_list_anim.xml -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_black_dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_black_dial.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_black_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_black_hour.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_black_minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_black_minute.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_white_dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_white_dial.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_white_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_white_hour.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog1_white_minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog1_white_minute.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_black_dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_black_dial.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_black_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_black_hour.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_black_minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_black_minute.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_white_dial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_white_dial.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_white_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_white_hour.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/analog2_white_minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/analog2_white_minute.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_calendar.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_gmail.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_missed_calls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_missed_calls.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_next_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_next_alarm.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_sms.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_extension_voicemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_extension_voicemail.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_clear.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_cloudy.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_foggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_foggy.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_partly_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_partly_cloudy.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_raining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_raining.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_snow.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_sunny.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/ic_weather_windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/ic_weather_windy.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-nodpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-nodpi/widget_preview.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-v21/white_selectable_item_background_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-v21/white_selectable_item_background_circle.xml -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/checkmark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/checkmark_black.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/checkmark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/checkmark_white.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/collapsed_extension_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/collapsed_extension_ellipsis.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/configure_appearance_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/configure_appearance_arrow.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/ic_action_done.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/ic_configure_item_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/ic_configure_item_overflow.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/ic_fab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/ic_fab_add.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/ic_widget_action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/ic_widget_action_settings.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/large_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/large_icon.png -------------------------------------------------------------------------------- /main/src/main/res/drawable-xxhdpi/spinner_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable-xxhdpi/spinner_triangle.png -------------------------------------------------------------------------------- /main/src/main/res/drawable/add_fab_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable/add_fab_background.xml -------------------------------------------------------------------------------- /main/src/main/res/drawable/undobar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable/undobar.xml -------------------------------------------------------------------------------- /main/src/main/res/drawable/white_selectable_item_background_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/drawable/white_selectable_item_background_circle.xml -------------------------------------------------------------------------------- /main/src/main/res/layout-land/daydream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout-land/daydream.xml -------------------------------------------------------------------------------- /main/src/main/res/layout-sw600dp/dialog_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout-sw600dp/dialog_about.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/activity_configure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/activity_configure.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/activity_extension_configuration_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/activity_extension_configuration_simple.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/daydream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/daydream.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/dialog_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/dialog_about.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/dialog_app_chooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/dialog_app_chooser.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/dialog_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/dialog_colors.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/dialog_weather_location_chooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/dialog_weather_location_chooser.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/fragment_configure_appearance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/fragment_configure_appearance.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/fragment_configure_appearance_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/fragment_configure_appearance_more.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/fragment_configure_extension_simple_prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/fragment_configure_extension_simple_prefs.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/fragment_configure_extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/fragment_configure_extensions.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/fragment_configure_simple_prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/fragment_configure_simple_prefs.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/grid_item_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/grid_item_color.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_calendar.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_configure_ab_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_configure_ab_spinner.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_configure_ab_spinner_dropdown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_configure_ab_spinner_dropdown.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_extension.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_intent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_intent.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/list_item_weather_location_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/list_item_weather_location_result.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/pref_layout_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/pref_layout_color.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/preference.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/preference_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/preference_category.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/preference_widget_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/preference_widget_checkbox.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/tab.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_clock.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_collapsed_ellipsis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_collapsed_ellipsis.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_collapsed_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_collapsed_extension.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_collapsed_extension_interactive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_collapsed_extension_interactive.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_collapsed_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_collapsed_list.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_date_style_condensed_bold.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_date_style_condensed_bold.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_date_style_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_date_style_default.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_date_style_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_date_style_simple.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_alpha.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_analog1_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_analog1_black.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_analog1_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_analog1_white.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_analog2_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_analog2_black.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_analog2_white.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_analog2_white.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_big_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_big_small.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_condensed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_condensed.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_default.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_light.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_include_time_style_stock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_include_time_style_stock.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_list_item_expanded_extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_list_item_expanded_extension.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_list_item_expanded_extension_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_list_item_expanded_extension_loading.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_main_collapsed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_main_collapsed.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_main_collapsed_forced_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_main_collapsed_forced_center.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_main_collapsed_forced_center_lockscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_main_collapsed_forced_center_lockscreen.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_main_expanded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_main_expanded.xml -------------------------------------------------------------------------------- /main/src/main/res/layout/widget_main_expanded_forced_center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/layout/widget_main_expanded_forced_center.xml -------------------------------------------------------------------------------- /main/src/main/res/menu/configure_item_overflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/menu/configure_item_overflow.xml -------------------------------------------------------------------------------- /main/src/main/res/menu/configure_overflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/menu/configure_overflow.xml -------------------------------------------------------------------------------- /main/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-hdpi/ic_launcher_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-hdpi/ic_launcher_white.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-mdpi/ic_launcher_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-mdpi/ic_launcher_white.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xhdpi/ic_launcher_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xhdpi/ic_launcher_white.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xxhdpi/ic_launcher_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xxhdpi/ic_launcher_white.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /main/src/main/res/mipmap-xxxhdpi/ic_launcher_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/mipmap-xxxhdpi/ic_launcher_white.png -------------------------------------------------------------------------------- /main/src/main/res/values-cs/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-cs/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-de/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-de/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-el-rGR/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-el-rGR/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-es/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-es/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-fr/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-fr/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-hu/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-hu/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-it/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-it/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ja/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ja/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ko/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ko/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-nl/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-nl/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-pl/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-pl/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-pt-rBR/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-pt-rBR/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ru/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ru/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sk/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sk/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw360dp/clock_metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw360dp/clock_metrics.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw360dp/dimens.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw600dp/clock_metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw600dp/clock_metrics.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw600dp/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw600dp/styles.xml -------------------------------------------------------------------------------- /main/src/main/res/values-sw720dp-land/clock_metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-sw720dp-land/clock_metrics.xml -------------------------------------------------------------------------------- /main/src/main/res/values-uk/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-uk/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-v21/fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-v21/fonts.xml -------------------------------------------------------------------------------- /main/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /main/src/main/res/values-zh-rCN/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-zh-rCN/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-zh-rTW/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-zh-rTW/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /main/src/main/res/values/clock_metrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/clock_metrics.xml -------------------------------------------------------------------------------- /main/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /main/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /main/src/main/res/values/fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/fonts.xml -------------------------------------------------------------------------------- /main/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /main/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /main/src/main/res/values/pref_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/pref_strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /main/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/daydream_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/daydream_info.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_advanced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_advanced.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_appearance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_appearance.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_calendar.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_daydream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_daydream.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_gmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_gmail.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_nextalarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_nextalarm.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/pref_weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/pref_weather.xml -------------------------------------------------------------------------------- /main/src/main/res/xml/widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/src/main/res/xml/widget_info.xml -------------------------------------------------------------------------------- /main/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/main/version.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/dashclock/HEAD/settings.gradle --------------------------------------------------------------------------------