├── .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 ├── build.gradle ├── 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 /.gitignore: -------------------------------------------------------------------------------- 1 | # Gradle files 2 | .gradle/ 3 | build/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | 8 | # Android Studio generated folders 9 | .navigation/ 10 | captures/ 11 | .externalNativeBuild 12 | 13 | # IntelliJ project files 14 | *.iml 15 | .idea/ 16 | 17 | # Misc 18 | .DS_Store 19 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- 1 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: Forecastie 3 | Upstream-Contact: Tomáš Martykán 4 | Source: https://github.com/martykan/forecastie/ 5 | 6 | # Sample paragraph, commented out: 7 | # 8 | # Files: src/* 9 | # Copyright: $YEAR $NAME <$CONTACT> 10 | # License: ... 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- 1 | Forecastie 2 | 안드로이드를 위한 간단한 오픈 소스 날씨 앱. 공개 API를 통해 OpenWeatherMap 에서 데이터를 수집합니다. 3 | 특징 4 | 5 | 심플한 디자인 6 | 자세한 날씨 예측 7 | 여러 유닛 8 | 전 세계의 모든 도시에서 작동 9 | 오프라인에서의 기능 10 | Contribution 11 | 아이디어 나 문제가 있으면 언제든지 문의 주세요. 모든 Contribution을 환영합니다. 12 | 특허 13 | 이 응용 프로그램은 자유 소프트웨어입니다: 당신은 당신의 의지에 따라 공유를 연구하고 향상시킬 수 있습니다. 특히, 자유 소프트웨어 재단 (Free Software Foundation)이 발행 한 GNU General Public License 의 조건에 따라 라이센스 버전 3 또는 이후 버전에 따라 재배포 및/또는 수정할 수 있습니다. 14 | 날씨 데이터는 Creative Commons 라이센스에 따라 OpenWeatherMap 에서 제공합니다. 15 | 아이콘은 날씨 아이콘, 루카스 비숍 과 에릭 꽃 에 의해, SIL OFL 1.1 라이센스 이하. 16 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/weather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/assets/fonts/weather.ttf -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/assets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/Constants.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie; 2 | 3 | public class Constants { 4 | public static final String DEFAULT_CITY = "London"; 5 | public static final double DEFAULT_LAT = 51.5072; 6 | public static final double DEFAULT_LON = 0.1275; 7 | public static final String DEFAULT_CITY_ID = "2643743"; 8 | public static final int DEFAULT_ZOOM_LEVEL = 7; 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/ParseResult.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.tasks; 2 | 3 | public enum ParseResult { 4 | OK, 5 | JSON_EXCEPTION, 6 | CITY_NOT_FOUND 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/TaskOutput.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.tasks; 2 | 3 | public class TaskOutput { 4 | // Indicates result of parsing server response 5 | ParseResult parseResult; 6 | // Indicates result of background task 7 | TaskResult taskResult; 8 | // Error caused unsuccessful result 9 | Throwable taskError; 10 | } 11 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/TaskResult.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.tasks; 2 | 3 | public enum TaskResult { SUCCESS, HTTP_ERROR, IO_EXCEPTION, TOO_MANY_REQUESTS, INVALID_API_KEY; } 4 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/Formatting.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils; 2 | 3 | import android.content.Context; 4 | 5 | import cz.martykan.forecastie.utils.formatters.WeatherFormatter; 6 | 7 | public class Formatting { 8 | 9 | private Context context; 10 | 11 | public Formatting(Context context) { 12 | this.context = context; 13 | } 14 | 15 | public String getWeatherIcon(int actualId, boolean isDay) { 16 | return WeatherFormatter.getWeatherIconAsText(actualId, isDay, context); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/formatters/WeatherFormatterType.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils.formatters; 2 | 3 | public enum WeatherFormatterType { NOTIFICATION_DEFAULT, NOTIFICATION_SIMPLE } 4 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/viewmodels/MapViewModel.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.viewmodels; 2 | 3 | import android.content.SharedPreferences; 4 | 5 | import androidx.lifecycle.ViewModel; 6 | 7 | import cz.martykan.forecastie.Constants; 8 | 9 | 10 | public class MapViewModel extends ViewModel { 11 | public SharedPreferences sharedPreferences; 12 | public String apiKey; 13 | public double mapLat = Constants.DEFAULT_LAT; 14 | public double mapLon = Constants.DEFAULT_LON; 15 | public int mapZoom = Constants.DEFAULT_ZOOM_LEVEL; 16 | public int tabPosition = 0; 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-mdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_card_classic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_36.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cloud.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_cloud_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/magnify.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/map.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_insert_chart_outlined_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_my_location_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/thermometer.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/water.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_classic.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/widget_card_transparent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recycler_view.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_map_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings_notification.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Υπηρεσία για την εμφάνιση της ειδοποίησης καιρού του Forecastie. 4 | Ειδοποίηση καιρού 5 | Δεν υπάρχουν δεδομένα 6 | 7 | Ειδοποίηση 8 | Εμφάνιση του καιρού στην ειδοποίηση 9 | Τύπος ειδοποίησης 10 | Προεπιλεγμένη ειδοποίηση Android 11 | Απλή ειδοποίηση 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #B3FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings_notification.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Serwis do wyświetlania powiadomień pogodowych aplikacji Forecastie. 4 | Powiadomienia pogodowe 5 | Brak danych 6 | 7 | Powiadomienia 8 | Pokazuj pogodę na pasku powiadomień. 9 | Typ powiadomienia 10 | Podstawowe powiadomienie Android 11 | Proste powiadomienie 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 240dp 3 | 16dp 4 | 16dp 5 | 6 | 16dp 7 | 16dp 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #5F7C89 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/keys.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "66803bb34c2a6e2cfe7ad7e2beb619ec" 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/xml/extensive_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/simple_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget_classic.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:4.0.1' 8 | } 9 | } 10 | 11 | allprojects { 12 | repositories { 13 | google() 14 | jcenter() 15 | } 16 | gradle.projectsEvaluated { 17 | tasks.withType(JavaCompile) { 18 | options.compilerArgs << "-Xlint:deprecation" 19 | } 20 | } 21 | } 22 | 23 | task clean(type: Delete) { 24 | delete rootProject.buildDir 25 | } 26 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/49.txt: -------------------------------------------------------------------------------- 1 | Code changes 2 | 3 | * Added on-first-run "Tap for Graphs" label to weather icon on "main" screen 4 | * Updated Spanish translation (thanks Elsa Andrés) 5 | * Fixed trailing-space error when searching for city 6 | * Fixed error in graph units 7 | 8 | Behind-the-scenes changes 9 | 10 | * Minor fixes to translation script 11 | * Minor updates to contributing.md 12 | * Added contact email address to CoC 13 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | A simple, copylefted libre software weather app for Android. It gathers data from OpenWeatherMap, via their public API. 2 | 3 | * Simple design 4 | * Detailed 5 day forecast 5 | * Multiple units 6 | * Works with any city in the world 7 | * Offline functionality 8 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/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/917a1839709652cd3b61c1d3fada2bb6b1b626bb/gifs/gif_1.gif -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Sep 05 17:43:13 CEST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip 7 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martykan/forecastie/917a1839709652cd3b61c1d3fada2bb6b1b626bb/icon.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------