├── .gitignore ├── LICENSE ├── README.md ├── SimpleWeatherForecast ├── .gitignore ├── build.gradle ├── proguard-rules.txt ├── src │ ├── androidTest │ │ └── java │ │ │ └── fr │ │ │ └── tvbarthel │ │ │ └── apps │ │ │ └── simpleweatherforcast │ │ │ └── tests │ │ │ ├── ApplicationTest.java │ │ │ └── DailyForecastJsonParserTest.java │ └── main │ │ ├── AndroidManifest.xml │ │ ├── aidl │ │ └── com │ │ │ └── android │ │ │ └── vending │ │ │ └── billing │ │ │ └── IInAppBillingService.aidl │ │ ├── ic_launcher-web.png │ │ ├── java │ │ ├── com │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── util │ │ │ │ ├── Base64.java │ │ │ │ ├── Base64DecoderException.java │ │ │ │ ├── IabException.java │ │ │ │ ├── IabHelper.java │ │ │ │ ├── IabResult.java │ │ │ │ ├── Inventory.java │ │ │ │ ├── Purchase.java │ │ │ │ ├── Security.java │ │ │ │ └── SkuDetails.java │ │ └── fr │ │ │ └── tvbarthel │ │ │ └── apps │ │ │ ├── billing │ │ │ ├── SupportActivity.java │ │ │ ├── adapter │ │ │ │ └── SupportAdapter.java │ │ │ ├── model │ │ │ │ ├── CoffeeEntry.java │ │ │ │ └── CoffeeEntryFactory.java │ │ │ └── utils │ │ │ │ └── SupportUtils.java │ │ │ └── simpleweatherforcast │ │ │ ├── MainActivity.java │ │ │ ├── SupportActivity.java │ │ │ ├── fragments │ │ │ ├── AboutDialogFragment.java │ │ │ ├── ForecastFragment.java │ │ │ ├── LicenseDialogFragment.java │ │ │ ├── MoreAppsDialogFragment.java │ │ │ └── TemperatureUnitPickerDialogFragment.java │ │ │ ├── model │ │ │ └── App.java │ │ │ ├── openweathermap │ │ │ ├── DailyForecastJsonParser.java │ │ │ └── DailyForecastModel.java │ │ │ ├── receivers │ │ │ └── WeatherWidgetReceiver.java │ │ │ ├── services │ │ │ ├── AppWidgetService.java │ │ │ └── DailyForecastUpdateService.java │ │ │ ├── ui │ │ │ ├── AlphaForegroundColorSpan.java │ │ │ ├── MoreAppsAdapter.java │ │ │ └── WeatherRemoteViewsFactory.java │ │ │ └── utils │ │ │ ├── ConnectivityUtils.java │ │ │ ├── LocationUtils.java │ │ │ ├── SharedPreferenceUtils.java │ │ │ ├── TemperatureUtils.java │ │ │ └── URLUtils.java │ │ └── res │ │ ├── drawable-fr-nodpi │ │ └── preview_app_widget.png │ │ ├── drawable-hdpi │ │ ├── ic_action_support.png │ │ ├── ic_candy_cane.png │ │ ├── ic_chase_whisply.png │ │ ├── ic_coffee_bean.png │ │ ├── ic_energy.png │ │ ├── ic_googly_zoo.png │ │ ├── ic_launcher.png │ │ ├── ic_simple_thermometer.png │ │ ├── white_line_bottom.9.png │ │ └── white_line_right.9.png │ │ ├── drawable-mdpi │ │ ├── ic_action_support.png │ │ ├── ic_candy_cane.png │ │ ├── ic_chase_whisply.png │ │ ├── ic_coffee_bean.png │ │ ├── ic_energy.png │ │ ├── ic_googly_zoo.png │ │ ├── ic_launcher.png │ │ ├── ic_simple_thermometer.png │ │ ├── white_line_bottom.9.png │ │ └── white_line_right.9.png │ │ ├── drawable-nodpi │ │ └── preview_app_widget.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_support.png │ │ ├── ic_candy_cane.png │ │ ├── ic_chase_whisply.png │ │ ├── ic_coffee_bean.png │ │ ├── ic_energy.png │ │ ├── ic_googly_zoo.png │ │ ├── ic_launcher.png │ │ ├── ic_simple_thermometer.png │ │ ├── white_line_bottom.9.png │ │ └── white_line_right.9.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_support.png │ │ ├── ic_candy_cane.png │ │ ├── ic_chase_whisply.png │ │ ├── ic_coffee_bean.png │ │ ├── ic_energy.png │ │ ├── ic_googly_zoo.png │ │ ├── ic_launcher.png │ │ ├── ic_simple_thermometer.png │ │ ├── white_line_bottom.9.png │ │ └── white_line_right.9.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ │ ├── drawable │ │ ├── list_selector_app_widget.xml │ │ ├── selector_more_apps.xml │ │ ├── support_card.xml │ │ ├── support_progress_bar.xml │ │ └── text_color_more_apps_link.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_support.xml │ │ ├── app_widget.xml │ │ ├── dialog_about.xml │ │ ├── dialog_license.xml │ │ ├── dialog_more_apps.xml │ │ ├── fragment_forecast.xml │ │ ├── row_app_widget.xml │ │ ├── row_more_apps.xml │ │ ├── support_entry.xml │ │ └── support_thanks.xml │ │ ├── menu │ │ ├── main.xml │ │ └── thanks.xml │ │ ├── values-fr │ │ ├── strings.xml │ │ └── support.xml │ │ ├── values-land │ │ └── bools.xml │ │ ├── values-pt │ │ ├── strings.xml │ │ └── support.xml │ │ ├── values-v11 │ │ └── bools.xml │ │ ├── values-v19 │ │ ├── colors.xml │ │ └── styles.xml │ │ ├── values-v21 │ │ └── colors.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── support.xml │ │ └── xml │ │ └── app_widget_provider.xml └── testOutput │ ├── reports │ └── connected │ │ ├── css │ │ ├── base-style.css │ │ └── style.css │ │ ├── fr.tvbarthel.apps.simpleweatherforcast.tests.ApplicationTest.html │ │ ├── fr.tvbarthel.apps.simpleweatherforcast.tests.DailyForecastJsonParserTest.html │ │ ├── fr.tvbarthel.apps.simpleweatherforcast.tests.html │ │ ├── index.html │ │ └── js │ │ └── report.js │ └── results │ └── connected │ └── TEST-Nexus 5 - 4.4.4-SimpleWeatherForecast-.xml ├── StoreListing ├── Screenshot_framed.xcf ├── en-GB │ ├── description.txt │ ├── feature_graphic.jpg │ ├── screenshots │ │ ├── Screenshot_2014-06-27-08-18-08.png │ │ ├── Screenshot_2014-06-27-08-18-18.png │ │ ├── Screenshot_2014-06-27-08-18-28.png │ │ ├── Screenshot_2014-06-27-08-18-41.png │ │ ├── Screenshot_2014-06-27-08-18-55.png │ │ ├── Screenshot_2014-06-27-08-19-27.png │ │ └── Screenshot_framed.jpg │ └── what_is_new.txt ├── en-US │ ├── description.txt │ ├── feature_graphic.jpg │ ├── screenshots │ │ ├── Screenshot_2014-06-27-08-21-44.png │ │ ├── Screenshot_2014-06-27-08-21-54.png │ │ ├── Screenshot_2014-06-27-08-22-05.png │ │ ├── Screenshot_2014-06-27-08-22-13.png │ │ ├── Screenshot_2014-06-27-08-22-23.png │ │ ├── Screenshot_2014-06-27-08-22-32.png │ │ └── Screenshot_framed.jpg │ └── what_is_new.txt ├── feature_graphic.xcf └── fr-FR │ ├── description.txt │ ├── feature_graphic.jpg │ ├── screenshots │ ├── Screenshot_2014-06-27-08-10-54.png │ ├── Screenshot_2014-06-27-08-11-08.png │ ├── Screenshot_2014-06-27-08-11-50.png │ ├── Screenshot_2014-06-27-08-11-57.png │ ├── Screenshot_2014-06-27-08-12-05.png │ ├── Screenshot_2014-06-27-08-12-20.png │ └── Screenshot_framed.jpg │ └── what_is_new.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/README.md -------------------------------------------------------------------------------- /SimpleWeatherForecast/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SimpleWeatherForecast/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/build.gradle -------------------------------------------------------------------------------- /SimpleWeatherForecast/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/proguard-rules.txt -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/androidTest/java/fr/tvbarthel/apps/simpleweatherforcast/tests/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/androidTest/java/fr/tvbarthel/apps/simpleweatherforcast/tests/ApplicationTest.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/androidTest/java/fr/tvbarthel/apps/simpleweatherforcast/tests/DailyForecastJsonParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/androidTest/java/fr/tvbarthel/apps/simpleweatherforcast/tests/DailyForecastJsonParserTest.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/aidl/com/android/vending/billing/IInAppBillingService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/aidl/com/android/vending/billing/IInAppBillingService.aidl -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Base64.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Base64DecoderException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Base64DecoderException.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabException.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabHelper.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/IabResult.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Inventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Inventory.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Purchase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Purchase.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Security.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/Security.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/SkuDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/com/android/vending/billing/util/SkuDetails.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/SupportActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/SupportActivity.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/adapter/SupportAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/adapter/SupportAdapter.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/model/CoffeeEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/model/CoffeeEntry.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/model/CoffeeEntryFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/model/CoffeeEntryFactory.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/utils/SupportUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/billing/utils/SupportUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/MainActivity.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/SupportActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/SupportActivity.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/AboutDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/AboutDialogFragment.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/ForecastFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/ForecastFragment.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/LicenseDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/LicenseDialogFragment.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/MoreAppsDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/MoreAppsDialogFragment.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/TemperatureUnitPickerDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/fragments/TemperatureUnitPickerDialogFragment.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/model/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/model/App.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/openweathermap/DailyForecastJsonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/openweathermap/DailyForecastJsonParser.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/openweathermap/DailyForecastModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/openweathermap/DailyForecastModel.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/receivers/WeatherWidgetReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/receivers/WeatherWidgetReceiver.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/services/AppWidgetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/services/AppWidgetService.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/services/DailyForecastUpdateService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/services/DailyForecastUpdateService.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/AlphaForegroundColorSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/AlphaForegroundColorSpan.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/MoreAppsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/MoreAppsAdapter.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/WeatherRemoteViewsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/ui/WeatherRemoteViewsFactory.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/ConnectivityUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/ConnectivityUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/LocationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/LocationUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/SharedPreferenceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/SharedPreferenceUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/TemperatureUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/TemperatureUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/URLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/java/fr/tvbarthel/apps/simpleweatherforcast/utils/URLUtils.java -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-fr-nodpi/preview_app_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-fr-nodpi/preview_app_widget.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_action_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_action_support.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_candy_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_candy_cane.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_chase_whisply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_chase_whisply.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_coffee_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_coffee_bean.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_energy.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_googly_zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_googly_zoo.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_simple_thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/ic_simple_thermometer.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/white_line_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/white_line_bottom.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-hdpi/white_line_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-hdpi/white_line_right.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_action_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_action_support.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_candy_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_candy_cane.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_chase_whisply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_chase_whisply.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_coffee_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_coffee_bean.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_energy.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_googly_zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_googly_zoo.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_simple_thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/ic_simple_thermometer.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/white_line_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/white_line_bottom.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-mdpi/white_line_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-mdpi/white_line_right.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-nodpi/preview_app_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-nodpi/preview_app_widget.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_action_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_action_support.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_candy_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_candy_cane.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_chase_whisply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_chase_whisply.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_coffee_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_coffee_bean.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_energy.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_googly_zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_googly_zoo.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_simple_thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/ic_simple_thermometer.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/white_line_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/white_line_bottom.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xhdpi/white_line_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xhdpi/white_line_right.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_action_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_action_support.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_candy_cane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_candy_cane.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_chase_whisply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_chase_whisply.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_coffee_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_coffee_bean.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_energy.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_googly_zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_googly_zoo.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_simple_thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/ic_simple_thermometer.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/white_line_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/white_line_bottom.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxhdpi/white_line_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxhdpi/white_line_right.9.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable/list_selector_app_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable/list_selector_app_widget.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable/selector_more_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable/selector_more_apps.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable/support_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable/support_card.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable/support_progress_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable/support_progress_bar.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/drawable/text_color_more_apps_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/drawable/text_color_more_apps_link.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/activity_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/activity_support.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/app_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/app_widget.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/dialog_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/dialog_about.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/dialog_license.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/dialog_license.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/dialog_more_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/dialog_more_apps.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/fragment_forecast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/fragment_forecast.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/row_app_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/row_app_widget.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/row_more_apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/row_more_apps.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/support_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/support_entry.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/layout/support_thanks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/layout/support_thanks.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/menu/thanks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/menu/thanks.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-fr/support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-fr/support.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-land/bools.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-pt/support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-pt/support.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-v11/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-v11/bools.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-v19/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-v19/colors.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/values/support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/values/support.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/src/main/res/xml/app_widget_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/src/main/res/xml/app_widget_provider.xml -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/css/base-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/css/base-style.css -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/css/style.css -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.ApplicationTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.ApplicationTest.html -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.DailyForecastJsonParserTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.DailyForecastJsonParserTest.html -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/fr.tvbarthel.apps.simpleweatherforcast.tests.html -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/index.html -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/reports/connected/js/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/reports/connected/js/report.js -------------------------------------------------------------------------------- /SimpleWeatherForecast/testOutput/results/connected/TEST-Nexus 5 - 4.4.4-SimpleWeatherForecast-.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/SimpleWeatherForecast/testOutput/results/connected/TEST-Nexus 5 - 4.4.4-SimpleWeatherForecast-.xml -------------------------------------------------------------------------------- /StoreListing/Screenshot_framed.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/Screenshot_framed.xcf -------------------------------------------------------------------------------- /StoreListing/en-GB/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/description.txt -------------------------------------------------------------------------------- /StoreListing/en-GB/feature_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/feature_graphic.jpg -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-08.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-18.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-28.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-41.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-18-55.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-19-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_2014-06-27-08-19-27.png -------------------------------------------------------------------------------- /StoreListing/en-GB/screenshots/Screenshot_framed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/screenshots/Screenshot_framed.jpg -------------------------------------------------------------------------------- /StoreListing/en-GB/what_is_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-GB/what_is_new.txt -------------------------------------------------------------------------------- /StoreListing/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/description.txt -------------------------------------------------------------------------------- /StoreListing/en-US/feature_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/feature_graphic.jpg -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-21-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-21-44.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-21-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-21-54.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-05.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-13.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-23.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_2014-06-27-08-22-32.png -------------------------------------------------------------------------------- /StoreListing/en-US/screenshots/Screenshot_framed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/screenshots/Screenshot_framed.jpg -------------------------------------------------------------------------------- /StoreListing/en-US/what_is_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/en-US/what_is_new.txt -------------------------------------------------------------------------------- /StoreListing/feature_graphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/feature_graphic.xcf -------------------------------------------------------------------------------- /StoreListing/fr-FR/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/description.txt -------------------------------------------------------------------------------- /StoreListing/fr-FR/feature_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/feature_graphic.jpg -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-10-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-10-54.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-08.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-50.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-11-57.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-12-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-12-05.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-12-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_2014-06-27-08-12-20.png -------------------------------------------------------------------------------- /StoreListing/fr-FR/screenshots/Screenshot_framed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/screenshots/Screenshot_framed.jpg -------------------------------------------------------------------------------- /StoreListing/fr-FR/what_is_new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/StoreListing/fr-FR/what_is_new.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tvbarthel/SimpleWeatherForecast/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':SimpleWeatherForecast' 2 | --------------------------------------------------------------------------------