├── .circleci └── config.yml ├── .github └── workflows │ └── android.yml ├── .gitignore ├── .reuse └── dep5 ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── CC-BY-SA-2.0.txt ├── CC-BY-SA-4.0.txt ├── GPL-3.0-or-later.txt └── OFL-1.1.txt ├── README.es.md ├── README.fr.md ├── README.it.md ├── README.ko.md ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── animate.min.css │ │ ├── font-awesome.min.css │ │ ├── fonts │ │ │ └── weather.ttf │ │ ├── images │ │ │ ├── marker-icon-2x.png │ │ │ └── marker-shadow.png │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── map.html │ ├── ic_launcher-web.png │ ├── java │ │ └── cz │ │ │ └── martykan │ │ │ └── forecastie │ │ │ ├── AlarmReceiver.java │ │ │ ├── Constants.java │ │ │ ├── activities │ │ │ ├── BaseActivity.java │ │ │ ├── GraphActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MapActivity.java │ │ │ ├── SettingsActivity.java │ │ │ └── SplashActivity.java │ │ │ ├── adapters │ │ │ ├── LocationsRecyclerAdapter.java │ │ │ ├── ViewPagerAdapter.java │ │ │ └── WeatherRecyclerAdapter.java │ │ │ ├── fragments │ │ │ ├── AboutDialogFragment.java │ │ │ ├── AmbiguousLocationDialogFragment.java │ │ │ └── RecyclerViewFragment.java │ │ │ ├── models │ │ │ ├── ImmutableWeather.java │ │ │ ├── LongTermWeatherList.java │ │ │ ├── Weather.java │ │ │ ├── WeatherPresentation.java │ │ │ └── WeatherViewHolder.java │ │ │ ├── notifications │ │ │ ├── WeatherNotificationService.java │ │ │ ├── repository │ │ │ │ └── WeatherRepository.java │ │ │ └── ui │ │ │ │ ├── DefaultNotificationContentUpdater.java │ │ │ │ ├── NotificationContentUpdater.java │ │ │ │ ├── NotificationContentUpdaterFactory.java │ │ │ │ └── SimpleNotificationContentUpdater.java │ │ │ ├── tasks │ │ │ ├── GenericRequestTask.java │ │ │ ├── ParseResult.java │ │ │ ├── TaskOutput.java │ │ │ └── TaskResult.java │ │ │ ├── utils │ │ │ ├── Formatting.java │ │ │ ├── Language.java │ │ │ ├── StubContentProvider.java │ │ │ ├── TimeUtils.java │ │ │ ├── UI.java │ │ │ ├── UnitConvertor.java │ │ │ ├── certificate │ │ │ │ ├── CertificateDownloader.java │ │ │ │ ├── CertificateUtils.java │ │ │ │ └── CertificatesTrustManager.java │ │ │ ├── formatters │ │ │ │ ├── DescriptionFormatter.java │ │ │ │ ├── TemperatureFormatter.java │ │ │ │ ├── WeatherDefaultNotificationFormatter.java │ │ │ │ ├── WeatherFormatter.java │ │ │ │ ├── WeatherFormatterFactory.java │ │ │ │ ├── WeatherFormatterType.java │ │ │ │ └── WeatherSimpleNotificationFormatter.java │ │ │ └── localizers │ │ │ │ ├── PressureUnitsLocalizer.java │ │ │ │ ├── WindDirectionLocalizer.java │ │ │ │ └── WindSpeedUnitsLocalizer.java │ │ │ ├── viewmodels │ │ │ └── MapViewModel.java │ │ │ ├── weatherapi │ │ │ ├── WeatherStorage.java │ │ │ └── owm │ │ │ │ └── OpenWeatherMapJsonParser.java │ │ │ └── widgets │ │ │ ├── AbstractWidgetProvider.java │ │ │ ├── ClassicTimeWidgetProvider.java │ │ │ ├── ExtensiveWidgetProvider.java │ │ │ ├── SimpleWidgetProvider.java │ │ │ └── TimeWidgetProvider.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_cloud_black_18dp.png │ │ ├── ic_cloud_black_24dp.png │ │ ├── ic_cloud_black_36dp.png │ │ ├── ic_cloud_black_48dp.png │ │ ├── ic_cloud_grey600_18dp.png │ │ ├── ic_cloud_grey600_24dp.png │ │ ├── ic_cloud_grey600_36dp.png │ │ ├── ic_cloud_grey600_48dp.png │ │ ├── ic_cloud_white_18dp.png │ │ ├── ic_cloud_white_24dp.png │ │ ├── ic_cloud_white_36dp.png │ │ ├── ic_cloud_white_48dp.png │ │ ├── ic_magnify_black_18dp.png │ │ ├── ic_magnify_black_24dp.png │ │ ├── ic_magnify_black_36dp.png │ │ ├── ic_magnify_black_48dp.png │ │ ├── ic_magnify_grey600_18dp.png │ │ ├── ic_magnify_grey600_24dp.png │ │ ├── ic_magnify_grey600_36dp.png │ │ ├── ic_magnify_grey600_48dp.png │ │ ├── ic_magnify_white_18dp.png │ │ ├── ic_magnify_white_24dp.png │ │ ├── ic_magnify_white_36dp.png │ │ ├── ic_magnify_white_48dp.png │ │ ├── ic_map_black_18dp.png │ │ ├── ic_map_black_24dp.png │ │ ├── ic_map_black_36dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_grey600_18dp.png │ │ ├── ic_map_grey600_24dp.png │ │ ├── ic_map_grey600_36dp.png │ │ ├── ic_map_grey600_48dp.png │ │ ├── ic_map_white_18dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_map_white_36dp.png │ │ ├── ic_map_white_48dp.png │ │ ├── ic_refresh_black_18dp.png │ │ ├── ic_refresh_black_24dp.png │ │ ├── ic_refresh_black_36dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_grey600_18dp.png │ │ ├── ic_refresh_grey600_24dp.png │ │ ├── ic_refresh_grey600_36dp.png │ │ ├── ic_refresh_grey600_48dp.png │ │ ├── ic_refresh_white_18dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_thermometer_black_18dp.png │ │ ├── ic_thermometer_black_24dp.png │ │ ├── ic_thermometer_black_36dp.png │ │ ├── ic_thermometer_black_48dp.png │ │ ├── ic_thermometer_grey600_18dp.png │ │ ├── ic_thermometer_grey600_24dp.png │ │ ├── ic_thermometer_grey600_36dp.png │ │ ├── ic_thermometer_grey600_48dp.png │ │ ├── ic_thermometer_white_18dp.png │ │ ├── ic_thermometer_white_24dp.png │ │ ├── ic_thermometer_white_36dp.png │ │ ├── ic_thermometer_white_48dp.png │ │ ├── ic_water_black_18dp.png │ │ ├── ic_water_black_24dp.png │ │ ├── ic_water_black_36dp.png │ │ ├── ic_water_black_48dp.png │ │ ├── ic_water_grey600_18dp.png │ │ ├── ic_water_grey600_24dp.png │ │ ├── ic_water_grey600_36dp.png │ │ ├── ic_water_grey600_48dp.png │ │ ├── ic_water_white_18dp.png │ │ ├── ic_water_white_24dp.png │ │ ├── ic_water_white_36dp.png │ │ ├── ic_water_white_48dp.png │ │ ├── ic_weather_windy_black_18dp.png │ │ ├── ic_weather_windy_black_24dp.png │ │ ├── ic_weather_windy_black_36dp.png │ │ ├── ic_weather_windy_black_48dp.png │ │ ├── ic_weather_windy_grey600_18dp.png │ │ ├── ic_weather_windy_grey600_24dp.png │ │ ├── ic_weather_windy_grey600_36dp.png │ │ ├── ic_weather_windy_grey600_48dp.png │ │ ├── ic_weather_windy_white_18dp.png │ │ ├── ic_weather_windy_white_24dp.png │ │ ├── ic_weather_windy_white_36dp.png │ │ ├── ic_weather_windy_white_48dp.png │ │ ├── sharp_insert_chart_outlined_black_18.png │ │ ├── sharp_insert_chart_outlined_black_24.png │ │ ├── sharp_insert_chart_outlined_black_36.png │ │ ├── sharp_insert_chart_outlined_black_48.png │ │ ├── sharp_insert_chart_outlined_white_18.png │ │ ├── sharp_insert_chart_outlined_white_24.png │ │ ├── sharp_insert_chart_outlined_white_36.png │ │ ├── sharp_insert_chart_outlined_white_48.png │ │ ├── sharp_my_location_black_18.png │ │ ├── sharp_my_location_black_24.png │ │ ├── sharp_my_location_black_36.png │ │ ├── sharp_my_location_black_48.png │ │ ├── sharp_my_location_white_18.png │ │ ├── sharp_my_location_white_24.png │ │ ├── sharp_my_location_white_36.png │ │ ├── sharp_my_location_white_48.png │ │ ├── sharp_settings_black_18.png │ │ ├── sharp_settings_black_24.png │ │ ├── sharp_settings_black_36.png │ │ ├── sharp_settings_black_48.png │ │ ├── sharp_settings_white_18.png │ │ ├── sharp_settings_white_24.png │ │ ├── sharp_settings_white_36.png │ │ └── sharp_settings_white_48.png │ │ ├── drawable-mdpi │ │ ├── ic_cloud_black_18dp.png │ │ ├── ic_cloud_black_24dp.png │ │ ├── ic_cloud_black_36dp.png │ │ ├── ic_cloud_black_48dp.png │ │ ├── ic_cloud_grey600_18dp.png │ │ ├── ic_cloud_grey600_24dp.png │ │ ├── ic_cloud_grey600_36dp.png │ │ ├── ic_cloud_grey600_48dp.png │ │ ├── ic_cloud_white_18dp.png │ │ ├── ic_cloud_white_24dp.png │ │ ├── ic_cloud_white_36dp.png │ │ ├── ic_cloud_white_48dp.png │ │ ├── ic_magnify_black_18dp.png │ │ ├── ic_magnify_black_24dp.png │ │ ├── ic_magnify_black_36dp.png │ │ ├── ic_magnify_black_48dp.png │ │ ├── ic_magnify_grey600_18dp.png │ │ ├── ic_magnify_grey600_24dp.png │ │ ├── ic_magnify_grey600_36dp.png │ │ ├── ic_magnify_grey600_48dp.png │ │ ├── ic_magnify_white_18dp.png │ │ ├── ic_magnify_white_24dp.png │ │ ├── ic_magnify_white_36dp.png │ │ ├── ic_magnify_white_48dp.png │ │ ├── ic_map_black_18dp.png │ │ ├── ic_map_black_24dp.png │ │ ├── ic_map_black_36dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_grey600_18dp.png │ │ ├── ic_map_grey600_24dp.png │ │ ├── ic_map_grey600_36dp.png │ │ ├── ic_map_grey600_48dp.png │ │ ├── ic_map_white_18dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_map_white_36dp.png │ │ ├── ic_map_white_48dp.png │ │ ├── ic_refresh_black_18dp.png │ │ ├── ic_refresh_black_24dp.png │ │ ├── ic_refresh_black_36dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_grey600_18dp.png │ │ ├── ic_refresh_grey600_24dp.png │ │ ├── ic_refresh_grey600_36dp.png │ │ ├── ic_refresh_grey600_48dp.png │ │ ├── ic_refresh_white_18dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_thermometer_black_18dp.png │ │ ├── ic_thermometer_black_24dp.png │ │ ├── ic_thermometer_black_36dp.png │ │ ├── ic_thermometer_black_48dp.png │ │ ├── ic_thermometer_grey600_18dp.png │ │ ├── ic_thermometer_grey600_24dp.png │ │ ├── ic_thermometer_grey600_36dp.png │ │ ├── ic_thermometer_grey600_48dp.png │ │ ├── ic_thermometer_white_18dp.png │ │ ├── ic_thermometer_white_24dp.png │ │ ├── ic_thermometer_white_36dp.png │ │ ├── ic_thermometer_white_48dp.png │ │ ├── ic_water_black_18dp.png │ │ ├── ic_water_black_24dp.png │ │ ├── ic_water_black_36dp.png │ │ ├── ic_water_black_48dp.png │ │ ├── ic_water_grey600_18dp.png │ │ ├── ic_water_grey600_24dp.png │ │ ├── ic_water_grey600_36dp.png │ │ ├── ic_water_grey600_48dp.png │ │ ├── ic_water_white_18dp.png │ │ ├── ic_water_white_24dp.png │ │ ├── ic_water_white_36dp.png │ │ ├── ic_water_white_48dp.png │ │ ├── ic_weather_windy_black_18dp.png │ │ ├── ic_weather_windy_black_24dp.png │ │ ├── ic_weather_windy_black_36dp.png │ │ ├── ic_weather_windy_black_48dp.png │ │ ├── ic_weather_windy_grey600_18dp.png │ │ ├── ic_weather_windy_grey600_24dp.png │ │ ├── ic_weather_windy_grey600_36dp.png │ │ ├── ic_weather_windy_grey600_48dp.png │ │ ├── ic_weather_windy_white_18dp.png │ │ ├── ic_weather_windy_white_24dp.png │ │ ├── ic_weather_windy_white_36dp.png │ │ ├── ic_weather_windy_white_48dp.png │ │ ├── sharp_insert_chart_outlined_black_18.png │ │ ├── sharp_insert_chart_outlined_black_24.png │ │ ├── sharp_insert_chart_outlined_black_36.png │ │ ├── sharp_insert_chart_outlined_black_48.png │ │ ├── sharp_insert_chart_outlined_white_18.png │ │ ├── sharp_insert_chart_outlined_white_24.png │ │ ├── sharp_insert_chart_outlined_white_36.png │ │ ├── sharp_insert_chart_outlined_white_48.png │ │ ├── sharp_my_location_black_18.png │ │ ├── sharp_my_location_black_24.png │ │ ├── sharp_my_location_black_36.png │ │ ├── sharp_my_location_black_48.png │ │ ├── sharp_my_location_white_18.png │ │ ├── sharp_my_location_white_24.png │ │ ├── sharp_my_location_white_36.png │ │ ├── sharp_my_location_white_48.png │ │ ├── sharp_settings_black_18.png │ │ ├── sharp_settings_black_24.png │ │ ├── sharp_settings_black_36.png │ │ ├── sharp_settings_black_48.png │ │ ├── sharp_settings_white_18.png │ │ ├── sharp_settings_white_24.png │ │ ├── sharp_settings_white_36.png │ │ └── sharp_settings_white_48.png │ │ ├── drawable-nodpi │ │ ├── widget_card_classic.xml │ │ ├── widget_preview.png │ │ ├── widget_preview_simple.png │ │ ├── widget_preview_time.png │ │ └── widget_preview_time_classic.png │ │ ├── drawable-xhdpi │ │ ├── ic_cloud_black_18dp.png │ │ ├── ic_cloud_black_24dp.png │ │ ├── ic_cloud_black_36dp.png │ │ ├── ic_cloud_black_48dp.png │ │ ├── ic_cloud_grey600_18dp.png │ │ ├── ic_cloud_grey600_24dp.png │ │ ├── ic_cloud_grey600_36dp.png │ │ ├── ic_cloud_grey600_48dp.png │ │ ├── ic_cloud_white_18dp.png │ │ ├── ic_cloud_white_24dp.png │ │ ├── ic_cloud_white_36dp.png │ │ ├── ic_cloud_white_48dp.png │ │ ├── ic_magnify_black_18dp.png │ │ ├── ic_magnify_black_24dp.png │ │ ├── ic_magnify_black_36dp.png │ │ ├── ic_magnify_black_48dp.png │ │ ├── ic_magnify_grey600_18dp.png │ │ ├── ic_magnify_grey600_24dp.png │ │ ├── ic_magnify_grey600_36dp.png │ │ ├── ic_magnify_grey600_48dp.png │ │ ├── ic_magnify_white_18dp.png │ │ ├── ic_magnify_white_24dp.png │ │ ├── ic_magnify_white_36dp.png │ │ ├── ic_magnify_white_48dp.png │ │ ├── ic_map_black_18dp.png │ │ ├── ic_map_black_24dp.png │ │ ├── ic_map_black_36dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_grey600_18dp.png │ │ ├── ic_map_grey600_24dp.png │ │ ├── ic_map_grey600_36dp.png │ │ ├── ic_map_grey600_48dp.png │ │ ├── ic_map_white_18dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_map_white_36dp.png │ │ ├── ic_map_white_48dp.png │ │ ├── ic_refresh_black_18dp.png │ │ ├── ic_refresh_black_24dp.png │ │ ├── ic_refresh_black_36dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_grey600_18dp.png │ │ ├── ic_refresh_grey600_24dp.png │ │ ├── ic_refresh_grey600_36dp.png │ │ ├── ic_refresh_grey600_48dp.png │ │ ├── ic_refresh_white_18dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_thermometer_black_18dp.png │ │ ├── ic_thermometer_black_24dp.png │ │ ├── ic_thermometer_black_36dp.png │ │ ├── ic_thermometer_black_48dp.png │ │ ├── ic_thermometer_grey600_18dp.png │ │ ├── ic_thermometer_grey600_24dp.png │ │ ├── ic_thermometer_grey600_36dp.png │ │ ├── ic_thermometer_grey600_48dp.png │ │ ├── ic_thermometer_white_18dp.png │ │ ├── ic_thermometer_white_24dp.png │ │ ├── ic_thermometer_white_36dp.png │ │ ├── ic_thermometer_white_48dp.png │ │ ├── ic_water_black_18dp.png │ │ ├── ic_water_black_24dp.png │ │ ├── ic_water_black_36dp.png │ │ ├── ic_water_black_48dp.png │ │ ├── ic_water_grey600_18dp.png │ │ ├── ic_water_grey600_24dp.png │ │ ├── ic_water_grey600_36dp.png │ │ ├── ic_water_grey600_48dp.png │ │ ├── ic_water_white_18dp.png │ │ ├── ic_water_white_24dp.png │ │ ├── ic_water_white_36dp.png │ │ ├── ic_water_white_48dp.png │ │ ├── ic_weather_windy_black_18dp.png │ │ ├── ic_weather_windy_black_24dp.png │ │ ├── ic_weather_windy_black_36dp.png │ │ ├── ic_weather_windy_black_48dp.png │ │ ├── ic_weather_windy_grey600_18dp.png │ │ ├── ic_weather_windy_grey600_24dp.png │ │ ├── ic_weather_windy_grey600_36dp.png │ │ ├── ic_weather_windy_grey600_48dp.png │ │ ├── ic_weather_windy_white_18dp.png │ │ ├── ic_weather_windy_white_24dp.png │ │ ├── ic_weather_windy_white_36dp.png │ │ ├── ic_weather_windy_white_48dp.png │ │ ├── sharp_insert_chart_outlined_black_18.png │ │ ├── sharp_insert_chart_outlined_black_24.png │ │ ├── sharp_insert_chart_outlined_black_36.png │ │ ├── sharp_insert_chart_outlined_black_48.png │ │ ├── sharp_insert_chart_outlined_white_18.png │ │ ├── sharp_insert_chart_outlined_white_24.png │ │ ├── sharp_insert_chart_outlined_white_36.png │ │ ├── sharp_insert_chart_outlined_white_48.png │ │ ├── sharp_my_location_black_18.png │ │ ├── sharp_my_location_black_24.png │ │ ├── sharp_my_location_black_36.png │ │ ├── sharp_my_location_black_48.png │ │ ├── sharp_my_location_white_18.png │ │ ├── sharp_my_location_white_24.png │ │ ├── sharp_my_location_white_36.png │ │ ├── sharp_my_location_white_48.png │ │ ├── sharp_settings_black_18.png │ │ ├── sharp_settings_black_24.png │ │ ├── sharp_settings_black_36.png │ │ ├── sharp_settings_black_48.png │ │ ├── sharp_settings_white_18.png │ │ ├── sharp_settings_white_24.png │ │ ├── sharp_settings_white_36.png │ │ └── sharp_settings_white_48.png │ │ ├── drawable-xxhdpi │ │ ├── ic_cloud_black_18dp.png │ │ ├── ic_cloud_black_24dp.png │ │ ├── ic_cloud_black_36dp.png │ │ ├── ic_cloud_black_48dp.png │ │ ├── ic_cloud_grey600_18dp.png │ │ ├── ic_cloud_grey600_24dp.png │ │ ├── ic_cloud_grey600_36dp.png │ │ ├── ic_cloud_grey600_48dp.png │ │ ├── ic_cloud_white_18dp.png │ │ ├── ic_cloud_white_24dp.png │ │ ├── ic_cloud_white_36dp.png │ │ ├── ic_cloud_white_48dp.png │ │ ├── ic_magnify_black_18dp.png │ │ ├── ic_magnify_black_24dp.png │ │ ├── ic_magnify_black_36dp.png │ │ ├── ic_magnify_black_48dp.png │ │ ├── ic_magnify_grey600_18dp.png │ │ ├── ic_magnify_grey600_24dp.png │ │ ├── ic_magnify_grey600_36dp.png │ │ ├── ic_magnify_grey600_48dp.png │ │ ├── ic_magnify_white_18dp.png │ │ ├── ic_magnify_white_24dp.png │ │ ├── ic_magnify_white_36dp.png │ │ ├── ic_magnify_white_48dp.png │ │ ├── ic_map_black_18dp.png │ │ ├── ic_map_black_24dp.png │ │ ├── ic_map_black_36dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_grey600_18dp.png │ │ ├── ic_map_grey600_24dp.png │ │ ├── ic_map_grey600_36dp.png │ │ ├── ic_map_grey600_48dp.png │ │ ├── ic_map_white_18dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_map_white_36dp.png │ │ ├── ic_map_white_48dp.png │ │ ├── ic_refresh_black_18dp.png │ │ ├── ic_refresh_black_24dp.png │ │ ├── ic_refresh_black_36dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_grey600_18dp.png │ │ ├── ic_refresh_grey600_24dp.png │ │ ├── ic_refresh_grey600_36dp.png │ │ ├── ic_refresh_grey600_48dp.png │ │ ├── ic_refresh_white_18dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_thermometer_black_18dp.png │ │ ├── ic_thermometer_black_24dp.png │ │ ├── ic_thermometer_black_36dp.png │ │ ├── ic_thermometer_black_48dp.png │ │ ├── ic_thermometer_grey600_18dp.png │ │ ├── ic_thermometer_grey600_24dp.png │ │ ├── ic_thermometer_grey600_36dp.png │ │ ├── ic_thermometer_grey600_48dp.png │ │ ├── ic_thermometer_white_18dp.png │ │ ├── ic_thermometer_white_24dp.png │ │ ├── ic_thermometer_white_36dp.png │ │ ├── ic_thermometer_white_48dp.png │ │ ├── ic_water_black_18dp.png │ │ ├── ic_water_black_24dp.png │ │ ├── ic_water_black_36dp.png │ │ ├── ic_water_black_48dp.png │ │ ├── ic_water_grey600_18dp.png │ │ ├── ic_water_grey600_24dp.png │ │ ├── ic_water_grey600_36dp.png │ │ ├── ic_water_grey600_48dp.png │ │ ├── ic_water_white_18dp.png │ │ ├── ic_water_white_24dp.png │ │ ├── ic_water_white_36dp.png │ │ ├── ic_water_white_48dp.png │ │ ├── ic_weather_windy_black_18dp.png │ │ ├── ic_weather_windy_black_24dp.png │ │ ├── ic_weather_windy_black_36dp.png │ │ ├── ic_weather_windy_black_48dp.png │ │ ├── ic_weather_windy_grey600_18dp.png │ │ ├── ic_weather_windy_grey600_24dp.png │ │ ├── ic_weather_windy_grey600_36dp.png │ │ ├── ic_weather_windy_grey600_48dp.png │ │ ├── ic_weather_windy_white_18dp.png │ │ ├── ic_weather_windy_white_24dp.png │ │ ├── ic_weather_windy_white_36dp.png │ │ ├── ic_weather_windy_white_48dp.png │ │ ├── sharp_insert_chart_outlined_black_18.png │ │ ├── sharp_insert_chart_outlined_black_24.png │ │ ├── sharp_insert_chart_outlined_black_36.png │ │ ├── sharp_insert_chart_outlined_black_48.png │ │ ├── sharp_insert_chart_outlined_white_18.png │ │ ├── sharp_insert_chart_outlined_white_24.png │ │ ├── sharp_insert_chart_outlined_white_36.png │ │ ├── sharp_insert_chart_outlined_white_48.png │ │ ├── sharp_my_location_black_18.png │ │ ├── sharp_my_location_black_24.png │ │ ├── sharp_my_location_black_36.png │ │ ├── sharp_my_location_black_48.png │ │ ├── sharp_my_location_white_18.png │ │ ├── sharp_my_location_white_24.png │ │ ├── sharp_my_location_white_36.png │ │ ├── sharp_my_location_white_48.png │ │ ├── sharp_settings_black_18.png │ │ ├── sharp_settings_black_24.png │ │ ├── sharp_settings_black_36.png │ │ ├── sharp_settings_black_48.png │ │ ├── sharp_settings_white_18.png │ │ ├── sharp_settings_white_24.png │ │ ├── sharp_settings_white_36.png │ │ └── sharp_settings_white_48.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_cloud_black_18dp.png │ │ ├── ic_cloud_black_24dp.png │ │ ├── ic_cloud_black_36dp.png │ │ ├── ic_cloud_black_48dp.png │ │ ├── ic_cloud_grey600_18dp.png │ │ ├── ic_cloud_grey600_24dp.png │ │ ├── ic_cloud_grey600_36dp.png │ │ ├── ic_cloud_grey600_48dp.png │ │ ├── ic_cloud_white_18dp.png │ │ ├── ic_cloud_white_24dp.png │ │ ├── ic_cloud_white_36dp.png │ │ ├── ic_cloud_white_48dp.png │ │ ├── ic_magnify_black_18dp.png │ │ ├── ic_magnify_black_24dp.png │ │ ├── ic_magnify_black_36dp.png │ │ ├── ic_magnify_black_48dp.png │ │ ├── ic_magnify_grey600_18dp.png │ │ ├── ic_magnify_grey600_24dp.png │ │ ├── ic_magnify_grey600_36dp.png │ │ ├── ic_magnify_grey600_48dp.png │ │ ├── ic_magnify_white_18dp.png │ │ ├── ic_magnify_white_24dp.png │ │ ├── ic_magnify_white_36dp.png │ │ ├── ic_magnify_white_48dp.png │ │ ├── ic_map_black_18dp.png │ │ ├── ic_map_black_24dp.png │ │ ├── ic_map_black_36dp.png │ │ ├── ic_map_black_48dp.png │ │ ├── ic_map_grey600_18dp.png │ │ ├── ic_map_grey600_24dp.png │ │ ├── ic_map_grey600_36dp.png │ │ ├── ic_map_grey600_48dp.png │ │ ├── ic_map_white_18dp.png │ │ ├── ic_map_white_24dp.png │ │ ├── ic_map_white_36dp.png │ │ ├── ic_map_white_48dp.png │ │ ├── ic_refresh_black_18dp.png │ │ ├── ic_refresh_black_24dp.png │ │ ├── ic_refresh_black_36dp.png │ │ ├── ic_refresh_black_48dp.png │ │ ├── ic_refresh_grey600_18dp.png │ │ ├── ic_refresh_grey600_24dp.png │ │ ├── ic_refresh_grey600_36dp.png │ │ ├── ic_refresh_grey600_48dp.png │ │ ├── ic_refresh_white_18dp.png │ │ ├── ic_refresh_white_24dp.png │ │ ├── ic_refresh_white_36dp.png │ │ ├── ic_refresh_white_48dp.png │ │ ├── ic_thermometer_black_18dp.png │ │ ├── ic_thermometer_black_24dp.png │ │ ├── ic_thermometer_black_36dp.png │ │ ├── ic_thermometer_black_48dp.png │ │ ├── ic_thermometer_grey600_18dp.png │ │ ├── ic_thermometer_grey600_24dp.png │ │ ├── ic_thermometer_grey600_36dp.png │ │ ├── ic_thermometer_grey600_48dp.png │ │ ├── ic_thermometer_white_18dp.png │ │ ├── ic_thermometer_white_24dp.png │ │ ├── ic_thermometer_white_36dp.png │ │ ├── ic_thermometer_white_48dp.png │ │ ├── ic_water_black_18dp.png │ │ ├── ic_water_black_24dp.png │ │ ├── ic_water_black_36dp.png │ │ ├── ic_water_black_48dp.png │ │ ├── ic_water_grey600_18dp.png │ │ ├── ic_water_grey600_24dp.png │ │ ├── ic_water_grey600_36dp.png │ │ ├── ic_water_grey600_48dp.png │ │ ├── ic_water_white_18dp.png │ │ ├── ic_water_white_24dp.png │ │ ├── ic_water_white_36dp.png │ │ ├── ic_water_white_48dp.png │ │ ├── ic_weather_windy_black_18dp.png │ │ ├── ic_weather_windy_black_24dp.png │ │ ├── ic_weather_windy_black_36dp.png │ │ ├── ic_weather_windy_black_48dp.png │ │ ├── ic_weather_windy_grey600_18dp.png │ │ ├── ic_weather_windy_grey600_24dp.png │ │ ├── ic_weather_windy_grey600_36dp.png │ │ ├── ic_weather_windy_grey600_48dp.png │ │ ├── ic_weather_windy_white_18dp.png │ │ ├── ic_weather_windy_white_24dp.png │ │ ├── ic_weather_windy_white_36dp.png │ │ ├── ic_weather_windy_white_48dp.png │ │ ├── sharp_insert_chart_outlined_black_18.png │ │ ├── sharp_insert_chart_outlined_black_24.png │ │ ├── sharp_insert_chart_outlined_black_36.png │ │ ├── sharp_insert_chart_outlined_black_48.png │ │ ├── sharp_insert_chart_outlined_white_18.png │ │ ├── sharp_insert_chart_outlined_white_24.png │ │ ├── sharp_insert_chart_outlined_white_36.png │ │ ├── sharp_insert_chart_outlined_white_48.png │ │ ├── sharp_my_location_black_18.png │ │ ├── sharp_my_location_black_24.png │ │ ├── sharp_my_location_black_36.png │ │ ├── sharp_my_location_black_48.png │ │ ├── sharp_my_location_white_18.png │ │ ├── sharp_my_location_white_24.png │ │ ├── sharp_my_location_white_36.png │ │ ├── sharp_my_location_white_48.png │ │ ├── sharp_settings_black_18.png │ │ ├── sharp_settings_black_24.png │ │ ├── sharp_settings_black_36.png │ │ ├── sharp_settings_black_48.png │ │ ├── sharp_settings_white_18.png │ │ ├── sharp_settings_white_24.png │ │ ├── sharp_settings_white_36.png │ │ └── sharp_settings_white_48.png │ │ ├── drawable │ │ ├── cloud.xml │ │ ├── ic_close_black_24dp.xml │ │ ├── ic_cloud_white_24dp.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── magnify.xml │ │ ├── map.xml │ │ ├── refresh.xml │ │ ├── sharp_insert_chart_outlined_24.xml │ │ ├── sharp_my_location_24.xml │ │ ├── sharp_settings_24.xml │ │ ├── splash.xml │ │ ├── tab_color.xml │ │ ├── thermometer.xml │ │ ├── water.xml │ │ ├── weather_windy.xml │ │ ├── widget_card.xml │ │ ├── widget_card_black.xml │ │ ├── widget_card_classic.xml │ │ ├── widget_card_dark.xml │ │ └── widget_card_transparent.xml │ │ ├── layout │ │ ├── activity_graph.xml │ │ ├── activity_map.xml │ │ ├── activity_scrolling.xml │ │ ├── extensive_widget.xml │ │ ├── fragment_dialog_ambiguous_location.xml │ │ ├── fragment_recycler_view.xml │ │ ├── list_location_row.xml │ │ ├── list_row.xml │ │ ├── notification_simple.xml │ │ ├── settings_toolbar.xml │ │ ├── simple_widget.xml │ │ ├── time_widget.xml │ │ └── time_widget_classic.xml │ │ ├── menu │ │ ├── menu_main.xml │ │ └── menu_map_bottom.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_not_translated.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-de │ │ ├── strings.xml │ │ └── strings_notification.xml │ │ ├── values-el │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-eo │ │ └── strings_main_graphs_map_about.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-fr │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-hu │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-ne │ │ └── strings.xml │ │ ├── values-night │ │ └── colors.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pl │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ └── strings_wind.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-se │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-ta-rIN │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-v27 │ │ └── styles.xml │ │ ├── values-zh │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── keys.xml │ │ ├── strings_main_graphs_map_about.xml │ │ ├── strings_not_translated.xml │ │ ├── strings_notification.xml │ │ ├── strings_other.xml │ │ ├── strings_settings_other.xml │ │ ├── strings_settings_units.xml │ │ ├── strings_wind.xml │ │ └── styles.xml │ │ └── xml │ │ ├── extensive_widget.xml │ │ ├── prefs.xml │ │ ├── simple_widget.xml │ │ ├── time_widget.xml │ │ └── time_widget_classic.xml │ └── test │ └── java │ └── cz │ └── martykan │ └── forecastie │ ├── models │ └── ImmutableWeatherTests.java │ ├── notifications │ ├── WeatherNotificationServicesTests.java │ ├── repository │ │ └── WeatherRepositoryTests.java │ └── ui │ │ ├── DefaultNotificationContentUpdaterTests.java │ │ ├── NotificationContentUpdaterFactoryTests.java │ │ └── SimpleNotificationContentUpdaterTests.java │ ├── utils │ ├── formatters │ │ ├── DescriptionFormatterTests.java │ │ ├── TemperatureFormatterTests.java │ │ ├── WeatherDefaultNotificationFormatterTests.java │ │ ├── WeatherFormatterFactoryTests.java │ │ └── WeatherSimpleNotificationFormatterTests.java │ └── localizers │ │ ├── PressureUnitsLocalizerTests.java │ │ ├── WindDirectionLocalizerTests.java │ │ └── WindSpeedUnitsLocalizerTests.java │ └── weatherapi │ └── owm │ └── OpenWeatherMapJsonParserTest.java ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ └── 49.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ ├── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.jpg │ └── tenInchScreenshots │ │ ├── 1.png │ │ └── 2.png │ ├── short_description.txt │ └── title.txt ├── gifs └── gif_1.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon.png ├── settings.gradle └── tools ├── reorderAll.sh ├── reorderTemplate ├── translation-files-updater.py └── translation-progress.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/.gitignore -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/LICENSES/CC-BY-SA-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/LICENSES/CC-BY-SA-4.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/OFL-1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/LICENSES/OFL-1.1.txt -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/README.es.md -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/README.it.md -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/animate.min.css -------------------------------------------------------------------------------- /app/src/main/assets/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/font-awesome.min.css -------------------------------------------------------------------------------- /app/src/main/assets/fonts/weather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/fonts/weather.ttf -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /app/src/main/assets/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/leaflet.css -------------------------------------------------------------------------------- /app/src/main/assets/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/leaflet.js -------------------------------------------------------------------------------- /app/src/main/assets/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/assets/map.html -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/AlarmReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/BaseActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/GraphActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/GraphActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/MapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/MapActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/activities/SplashActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/adapters/ViewPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/adapters/ViewPagerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/ImmutableWeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/models/ImmutableWeather.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/LongTermWeatherList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/models/LongTermWeatherList.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/Weather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/models/Weather.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/WeatherPresentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/models/WeatherPresentation.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/WeatherViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/models/WeatherViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/GenericRequestTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/tasks/GenericRequestTask.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/ParseResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/tasks/ParseResult.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/TaskOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/tasks/TaskOutput.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/TaskResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/tasks/TaskResult.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/Formatting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/Formatting.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/Language.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/Language.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/StubContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/StubContentProvider.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/TimeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/TimeUtils.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/UI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/UI.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/UnitConvertor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/utils/UnitConvertor.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/viewmodels/MapViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/viewmodels/MapViewModel.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/weatherapi/WeatherStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/weatherapi/WeatherStorage.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/widgets/SimpleWidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/widgets/SimpleWidgetProvider.java -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/widgets/TimeWidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/java/cz/martykan/forecastie/widgets/TimeWidgetProvider.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-hdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-mdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_card_classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-nodpi/widget_card_classic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-nodpi/widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-nodpi/widget_preview_simple.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-nodpi/widget_preview_time.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_time_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-nodpi/widget_preview_time_classic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_18dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/cloud.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/ic_close_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_white_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/ic_cloud_white_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/magnify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/magnify.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/map.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_insert_chart_outlined_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/sharp_insert_chart_outlined_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_my_location_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/sharp_my_location_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_settings_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/sharp_settings_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/splash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/tab_color.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/thermometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/thermometer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/water.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/water.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_windy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/weather_windy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/widget_card.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/widget_card_black.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/widget_card_classic.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/widget_card_dark.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/drawable/widget_card_transparent.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/activity_graph.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/activity_map.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/activity_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/extensive_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/extensive_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_dialog_ambiguous_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/fragment_dialog_ambiguous_location.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/fragment_recycler_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_location_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/list_location_row.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/list_row.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/notification_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/notification_simple.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/settings_toolbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/simple_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/simple_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/time_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/time_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/time_widget_classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/layout/time_widget_classic.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_map_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/menu/menu_map_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_not_translated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_not_translated.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-da/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-de/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-el/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-eo/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-eu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fa/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fa/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-fr/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-hu/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ne/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pl/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ro/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-se/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-se/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/keys.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_main_graphs_map_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_main_graphs_map_about.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_not_translated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_not_translated.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_settings_other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_settings_other.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_settings_units.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_settings_units.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_wind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/strings_wind.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/extensive_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/xml/extensive_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/xml/prefs.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/simple_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/xml/simple_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/xml/time_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget_classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/app/src/main/res/xml/time_widget_classic.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/changelogs/49.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/fastlane/metadata/android/en-US/images/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | A simple, copylefted libre software weather app for Android. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Forecastie 2 | -------------------------------------------------------------------------------- /gifs/gif_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gifs/gif_1.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/icon.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tools/reorderAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/tools/reorderAll.sh -------------------------------------------------------------------------------- /tools/reorderTemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/tools/reorderTemplate -------------------------------------------------------------------------------- /tools/translation-files-updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/tools/translation-files-updater.py -------------------------------------------------------------------------------- /tools/translation-progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/HEAD/tools/translation-progress.py --------------------------------------------------------------------------------