├── LICENSE ├── settings.gradle ├── fastlane └── metadata │ └── android │ └── en-US │ ├── title.txt │ ├── short_description.txt │ ├── images │ ├── icon.png │ ├── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.jpg │ └── tenInchScreenshots │ │ ├── 1.png │ │ └── 2.png │ ├── full_description.txt │ └── changelogs │ └── 49.txt ├── icon.png ├── app ├── src │ ├── main │ │ ├── ic_launcher-web.png │ │ ├── assets │ │ │ ├── fonts │ │ │ │ └── weather.ttf │ │ │ └── images │ │ │ │ ├── marker-shadow.png │ │ │ │ └── marker-icon-2x.png │ │ ├── res │ │ │ ├── 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 │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_map_black_18dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_map_black_36dp.png │ │ │ │ ├── ic_map_black_48dp.png │ │ │ │ ├── ic_map_white_18dp.png │ │ │ │ ├── ic_map_white_24dp.png │ │ │ │ ├── ic_map_white_36dp.png │ │ │ │ ├── ic_map_white_48dp.png │ │ │ │ ├── ic_cloud_black_18dp.png │ │ │ │ ├── ic_cloud_black_24dp.png │ │ │ │ ├── ic_cloud_black_36dp.png │ │ │ │ ├── ic_cloud_black_48dp.png │ │ │ │ ├── ic_cloud_white_18dp.png │ │ │ │ ├── ic_cloud_white_24dp.png │ │ │ │ ├── ic_cloud_white_36dp.png │ │ │ │ ├── ic_cloud_white_48dp.png │ │ │ │ ├── ic_map_grey600_18dp.png │ │ │ │ ├── ic_map_grey600_24dp.png │ │ │ │ ├── ic_map_grey600_36dp.png │ │ │ │ ├── ic_map_grey600_48dp.png │ │ │ │ ├── ic_water_black_18dp.png │ │ │ │ ├── ic_water_black_24dp.png │ │ │ │ ├── ic_water_black_36dp.png │ │ │ │ ├── ic_water_black_48dp.png │ │ │ │ ├── ic_water_white_18dp.png │ │ │ │ ├── ic_water_white_24dp.png │ │ │ │ ├── ic_water_white_36dp.png │ │ │ │ ├── ic_water_white_48dp.png │ │ │ │ ├── ic_cloud_grey600_18dp.png │ │ │ │ ├── ic_cloud_grey600_24dp.png │ │ │ │ ├── ic_cloud_grey600_36dp.png │ │ │ │ ├── ic_cloud_grey600_48dp.png │ │ │ │ ├── ic_magnify_black_18dp.png │ │ │ │ ├── ic_magnify_black_24dp.png │ │ │ │ ├── ic_magnify_black_36dp.png │ │ │ │ ├── ic_magnify_black_48dp.png │ │ │ │ ├── ic_magnify_white_18dp.png │ │ │ │ ├── ic_magnify_white_24dp.png │ │ │ │ ├── ic_magnify_white_36dp.png │ │ │ │ ├── ic_magnify_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_white_18dp.png │ │ │ │ ├── ic_refresh_white_24dp.png │ │ │ │ ├── ic_refresh_white_36dp.png │ │ │ │ ├── ic_refresh_white_48dp.png │ │ │ │ ├── ic_water_grey600_18dp.png │ │ │ │ ├── ic_water_grey600_24dp.png │ │ │ │ ├── ic_water_grey600_36dp.png │ │ │ │ ├── ic_water_grey600_48dp.png │ │ │ │ ├── ic_magnify_grey600_18dp.png │ │ │ │ ├── ic_magnify_grey600_24dp.png │ │ │ │ ├── ic_magnify_grey600_36dp.png │ │ │ │ ├── ic_magnify_grey600_48dp.png │ │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ │ ├── ic_refresh_grey600_48dp.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 │ │ │ │ ├── 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_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_white_18dp.png │ │ │ │ ├── ic_weather_windy_white_24dp.png │ │ │ │ ├── ic_weather_windy_white_36dp.png │ │ │ │ ├── ic_weather_windy_white_48dp.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 │ │ │ │ ├── ic_weather_windy_grey600_18dp.png │ │ │ │ ├── ic_weather_windy_grey600_24dp.png │ │ │ │ ├── ic_weather_windy_grey600_36dp.png │ │ │ │ ├── ic_weather_windy_grey600_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 │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_map_black_18dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_map_black_36dp.png │ │ │ │ ├── ic_map_black_48dp.png │ │ │ │ ├── ic_map_white_18dp.png │ │ │ │ ├── ic_map_white_24dp.png │ │ │ │ ├── ic_map_white_36dp.png │ │ │ │ ├── ic_map_white_48dp.png │ │ │ │ ├── ic_cloud_black_18dp.png │ │ │ │ ├── ic_cloud_black_24dp.png │ │ │ │ ├── ic_cloud_black_36dp.png │ │ │ │ ├── ic_cloud_black_48dp.png │ │ │ │ ├── ic_cloud_white_18dp.png │ │ │ │ ├── ic_cloud_white_24dp.png │ │ │ │ ├── ic_cloud_white_36dp.png │ │ │ │ ├── ic_cloud_white_48dp.png │ │ │ │ ├── ic_map_grey600_18dp.png │ │ │ │ ├── ic_map_grey600_24dp.png │ │ │ │ ├── ic_map_grey600_36dp.png │ │ │ │ ├── ic_map_grey600_48dp.png │ │ │ │ ├── ic_water_black_18dp.png │ │ │ │ ├── ic_water_black_24dp.png │ │ │ │ ├── ic_water_black_36dp.png │ │ │ │ ├── ic_water_black_48dp.png │ │ │ │ ├── ic_water_white_18dp.png │ │ │ │ ├── ic_water_white_24dp.png │ │ │ │ ├── ic_water_white_36dp.png │ │ │ │ ├── ic_water_white_48dp.png │ │ │ │ ├── ic_cloud_grey600_18dp.png │ │ │ │ ├── ic_cloud_grey600_24dp.png │ │ │ │ ├── ic_cloud_grey600_36dp.png │ │ │ │ ├── ic_cloud_grey600_48dp.png │ │ │ │ ├── ic_magnify_black_18dp.png │ │ │ │ ├── ic_magnify_black_24dp.png │ │ │ │ ├── ic_magnify_black_36dp.png │ │ │ │ ├── ic_magnify_black_48dp.png │ │ │ │ ├── ic_magnify_white_18dp.png │ │ │ │ ├── ic_magnify_white_24dp.png │ │ │ │ ├── ic_magnify_white_36dp.png │ │ │ │ ├── ic_magnify_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_white_18dp.png │ │ │ │ ├── ic_refresh_white_24dp.png │ │ │ │ ├── ic_refresh_white_36dp.png │ │ │ │ ├── ic_refresh_white_48dp.png │ │ │ │ ├── ic_water_grey600_18dp.png │ │ │ │ ├── ic_water_grey600_24dp.png │ │ │ │ ├── ic_water_grey600_36dp.png │ │ │ │ ├── ic_water_grey600_48dp.png │ │ │ │ ├── ic_magnify_grey600_18dp.png │ │ │ │ ├── ic_magnify_grey600_24dp.png │ │ │ │ ├── ic_magnify_grey600_36dp.png │ │ │ │ ├── ic_magnify_grey600_48dp.png │ │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ │ ├── ic_refresh_grey600_48dp.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 │ │ │ │ ├── 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_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_white_18dp.png │ │ │ │ ├── ic_weather_windy_white_24dp.png │ │ │ │ ├── ic_weather_windy_white_36dp.png │ │ │ │ ├── ic_weather_windy_white_48dp.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 │ │ │ │ ├── ic_weather_windy_grey600_18dp.png │ │ │ │ ├── ic_weather_windy_grey600_24dp.png │ │ │ │ ├── ic_weather_windy_grey600_36dp.png │ │ │ │ ├── ic_weather_windy_grey600_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 │ │ │ ├── drawable-nodpi │ │ │ │ ├── widget_preview.png │ │ │ │ ├── widget_preview_simple.png │ │ │ │ ├── widget_preview_time.png │ │ │ │ ├── widget_preview_time_classic.png │ │ │ │ └── widget_card_classic.xml │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_map_black_18dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_map_black_36dp.png │ │ │ │ ├── ic_map_black_48dp.png │ │ │ │ ├── ic_map_white_18dp.png │ │ │ │ ├── ic_map_white_24dp.png │ │ │ │ ├── ic_map_white_36dp.png │ │ │ │ ├── ic_map_white_48dp.png │ │ │ │ ├── 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_white_18dp.png │ │ │ │ ├── ic_magnify_white_24dp.png │ │ │ │ ├── ic_magnify_white_36dp.png │ │ │ │ ├── ic_magnify_white_48dp.png │ │ │ │ ├── ic_map_grey600_18dp.png │ │ │ │ ├── ic_map_grey600_24dp.png │ │ │ │ ├── ic_map_grey600_36dp.png │ │ │ │ ├── ic_map_grey600_48dp.png │ │ │ │ ├── ic_refresh_black_18dp.png │ │ │ │ ├── ic_refresh_black_24dp.png │ │ │ │ ├── ic_refresh_black_36dp.png │ │ │ │ ├── ic_refresh_black_48dp.png │ │ │ │ ├── ic_refresh_white_18dp.png │ │ │ │ ├── ic_refresh_white_24dp.png │ │ │ │ ├── ic_refresh_white_36dp.png │ │ │ │ ├── ic_refresh_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_magnify_grey600_18dp.png │ │ │ │ ├── ic_magnify_grey600_24dp.png │ │ │ │ ├── ic_magnify_grey600_36dp.png │ │ │ │ ├── ic_magnify_grey600_48dp.png │ │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ │ ├── ic_refresh_grey600_48dp.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 │ │ │ │ ├── ic_thermometer_black_18dp.png │ │ │ │ ├── ic_thermometer_black_24dp.png │ │ │ │ ├── ic_thermometer_black_36dp.png │ │ │ │ ├── ic_thermometer_black_48dp.png │ │ │ │ ├── ic_thermometer_white_18dp.png │ │ │ │ ├── ic_thermometer_white_24dp.png │ │ │ │ ├── ic_thermometer_white_36dp.png │ │ │ │ ├── ic_thermometer_white_48dp.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 │ │ │ │ ├── ic_thermometer_grey600_18dp.png │ │ │ │ ├── ic_thermometer_grey600_24dp.png │ │ │ │ ├── ic_thermometer_grey600_36dp.png │ │ │ │ ├── ic_thermometer_grey600_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_white_18dp.png │ │ │ │ ├── ic_weather_windy_white_24dp.png │ │ │ │ ├── ic_weather_windy_white_36dp.png │ │ │ │ ├── ic_weather_windy_white_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 │ │ │ │ ├── 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 │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_map_black_18dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_map_black_36dp.png │ │ │ │ ├── ic_map_black_48dp.png │ │ │ │ ├── ic_map_white_18dp.png │ │ │ │ ├── ic_map_white_24dp.png │ │ │ │ ├── ic_map_white_36dp.png │ │ │ │ ├── ic_map_white_48dp.png │ │ │ │ ├── ic_cloud_black_18dp.png │ │ │ │ ├── ic_cloud_black_24dp.png │ │ │ │ ├── ic_cloud_black_36dp.png │ │ │ │ ├── ic_cloud_black_48dp.png │ │ │ │ ├── ic_cloud_white_18dp.png │ │ │ │ ├── ic_cloud_white_24dp.png │ │ │ │ ├── ic_cloud_white_36dp.png │ │ │ │ ├── ic_cloud_white_48dp.png │ │ │ │ ├── ic_map_grey600_18dp.png │ │ │ │ ├── ic_map_grey600_24dp.png │ │ │ │ ├── ic_map_grey600_36dp.png │ │ │ │ ├── ic_map_grey600_48dp.png │ │ │ │ ├── ic_water_black_18dp.png │ │ │ │ ├── ic_water_black_24dp.png │ │ │ │ ├── ic_water_black_36dp.png │ │ │ │ ├── ic_water_black_48dp.png │ │ │ │ ├── ic_water_white_18dp.png │ │ │ │ ├── ic_water_white_24dp.png │ │ │ │ ├── ic_water_white_36dp.png │ │ │ │ ├── ic_water_white_48dp.png │ │ │ │ ├── ic_cloud_grey600_18dp.png │ │ │ │ ├── ic_cloud_grey600_24dp.png │ │ │ │ ├── ic_cloud_grey600_36dp.png │ │ │ │ ├── ic_cloud_grey600_48dp.png │ │ │ │ ├── ic_magnify_black_18dp.png │ │ │ │ ├── ic_magnify_black_24dp.png │ │ │ │ ├── ic_magnify_black_36dp.png │ │ │ │ ├── ic_magnify_black_48dp.png │ │ │ │ ├── ic_magnify_white_18dp.png │ │ │ │ ├── ic_magnify_white_24dp.png │ │ │ │ ├── ic_magnify_white_36dp.png │ │ │ │ ├── ic_magnify_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_white_18dp.png │ │ │ │ ├── ic_refresh_white_24dp.png │ │ │ │ ├── ic_refresh_white_36dp.png │ │ │ │ ├── ic_refresh_white_48dp.png │ │ │ │ ├── ic_water_grey600_18dp.png │ │ │ │ ├── ic_water_grey600_24dp.png │ │ │ │ ├── ic_water_grey600_36dp.png │ │ │ │ ├── ic_water_grey600_48dp.png │ │ │ │ ├── ic_magnify_grey600_18dp.png │ │ │ │ ├── ic_magnify_grey600_24dp.png │ │ │ │ ├── ic_magnify_grey600_36dp.png │ │ │ │ ├── ic_magnify_grey600_48dp.png │ │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ │ ├── ic_thermometer_black_18dp.png │ │ │ │ ├── ic_thermometer_black_24dp.png │ │ │ │ ├── ic_thermometer_black_36dp.png │ │ │ │ ├── ic_thermometer_black_48dp.png │ │ │ │ ├── ic_thermometer_white_18dp.png │ │ │ │ ├── ic_thermometer_white_24dp.png │ │ │ │ ├── ic_thermometer_white_36dp.png │ │ │ │ ├── ic_thermometer_white_48dp.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 │ │ │ │ ├── ic_thermometer_grey600_18dp.png │ │ │ │ ├── ic_thermometer_grey600_24dp.png │ │ │ │ ├── ic_thermometer_grey600_36dp.png │ │ │ │ ├── ic_thermometer_grey600_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_white_18dp.png │ │ │ │ ├── ic_weather_windy_white_24dp.png │ │ │ │ ├── ic_weather_windy_white_36dp.png │ │ │ │ ├── ic_weather_windy_white_48dp.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 │ │ │ │ ├── ic_weather_windy_grey600_18dp.png │ │ │ │ ├── ic_weather_windy_grey600_24dp.png │ │ │ │ ├── ic_weather_windy_grey600_36dp.png │ │ │ │ ├── ic_weather_windy_grey600_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 │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_cloud_black_18dp.png │ │ │ │ ├── ic_cloud_black_24dp.png │ │ │ │ ├── ic_cloud_black_36dp.png │ │ │ │ ├── ic_cloud_black_48dp.png │ │ │ │ ├── ic_cloud_white_18dp.png │ │ │ │ ├── ic_cloud_white_24dp.png │ │ │ │ ├── ic_cloud_white_36dp.png │ │ │ │ ├── ic_cloud_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_water_black_18dp.png │ │ │ │ ├── ic_water_black_24dp.png │ │ │ │ ├── ic_water_black_36dp.png │ │ │ │ ├── ic_water_black_48dp.png │ │ │ │ ├── ic_water_white_18dp.png │ │ │ │ ├── ic_water_white_24dp.png │ │ │ │ ├── ic_water_white_36dp.png │ │ │ │ ├── ic_water_white_48dp.png │ │ │ │ ├── ic_cloud_grey600_18dp.png │ │ │ │ ├── ic_cloud_grey600_24dp.png │ │ │ │ ├── ic_cloud_grey600_36dp.png │ │ │ │ ├── ic_cloud_grey600_48dp.png │ │ │ │ ├── ic_magnify_black_18dp.png │ │ │ │ ├── ic_magnify_black_24dp.png │ │ │ │ ├── ic_magnify_black_36dp.png │ │ │ │ ├── ic_magnify_black_48dp.png │ │ │ │ ├── ic_magnify_white_18dp.png │ │ │ │ ├── ic_magnify_white_24dp.png │ │ │ │ ├── ic_magnify_white_36dp.png │ │ │ │ ├── ic_magnify_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_white_18dp.png │ │ │ │ ├── ic_refresh_white_24dp.png │ │ │ │ ├── ic_refresh_white_36dp.png │ │ │ │ ├── ic_refresh_white_48dp.png │ │ │ │ ├── ic_water_grey600_18dp.png │ │ │ │ ├── ic_water_grey600_24dp.png │ │ │ │ ├── ic_water_grey600_36dp.png │ │ │ │ ├── ic_water_grey600_48dp.png │ │ │ │ ├── ic_magnify_grey600_18dp.png │ │ │ │ ├── ic_magnify_grey600_24dp.png │ │ │ │ ├── ic_magnify_grey600_36dp.png │ │ │ │ ├── ic_magnify_grey600_48dp.png │ │ │ │ ├── ic_refresh_grey600_18dp.png │ │ │ │ ├── ic_refresh_grey600_24dp.png │ │ │ │ ├── ic_refresh_grey600_36dp.png │ │ │ │ ├── ic_refresh_grey600_48dp.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 │ │ │ │ ├── ic_thermometer_black_18dp.png │ │ │ │ ├── ic_thermometer_black_24dp.png │ │ │ │ ├── ic_thermometer_black_36dp.png │ │ │ │ ├── ic_thermometer_black_48dp.png │ │ │ │ ├── ic_thermometer_white_18dp.png │ │ │ │ ├── ic_thermometer_white_24dp.png │ │ │ │ ├── ic_thermometer_white_36dp.png │ │ │ │ ├── ic_thermometer_white_48dp.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 │ │ │ │ ├── ic_thermometer_grey600_18dp.png │ │ │ │ ├── ic_thermometer_grey600_24dp.png │ │ │ │ ├── ic_thermometer_grey600_36dp.png │ │ │ │ ├── ic_thermometer_grey600_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 │ │ │ ├── values │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── keys.xml │ │ │ │ ├── attrs.xml │ │ │ │ └── dimens.xml │ │ │ ├── drawable │ │ │ │ ├── tab_color.xml │ │ │ │ ├── splash.xml │ │ │ │ ├── water.xml │ │ │ │ ├── ic_close_black_24dp.xml │ │ │ │ ├── widget_card.xml │ │ │ │ ├── ic_cloud_white_24dp.xml │ │ │ │ ├── cloud.xml │ │ │ │ ├── widget_card_classic.xml │ │ │ │ ├── widget_card_dark.xml │ │ │ │ ├── widget_card_transparent.xml │ │ │ │ ├── widget_card_black.xml │ │ │ │ ├── sharp_insert_chart_outlined_24.xml │ │ │ │ ├── refresh.xml │ │ │ │ ├── map.xml │ │ │ │ ├── thermometer.xml │ │ │ │ ├── magnify.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ ├── sharp_my_location_24.xml │ │ │ │ ├── weather_windy.xml │ │ │ │ └── sharp_settings_24.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── xml │ │ │ │ ├── simple_widget.xml │ │ │ │ ├── time_widget.xml │ │ │ │ ├── extensive_widget.xml │ │ │ │ └── time_widget_classic.xml │ │ │ ├── layout │ │ │ │ ├── fragment_recycler_view.xml │ │ │ │ ├── settings_toolbar.xml │ │ │ │ ├── activity_map.xml │ │ │ │ └── fragment_dialog_ambiguous_location.xml │ │ │ └── menu │ │ │ │ └── menu_map_bottom.xml │ │ └── java │ │ │ └── cz │ │ │ └── martykan │ │ │ └── forecastie │ │ │ ├── tasks │ │ │ ├── ParseResult.java │ │ │ ├── TaskResult.java │ │ │ └── TaskOutput.java │ │ │ ├── Constants.java │ │ │ ├── activities │ │ │ ├── SplashActivity.java │ │ │ └── BaseActivity.java │ │ │ ├── viewmodels │ │ │ └── MapViewModel.java │ │ │ ├── utils │ │ │ ├── Language.java │ │ │ ├── TimeUtils.java │ │ │ ├── certificate │ │ │ │ └── CertificatesTrustManager.java │ │ │ ├── StubContentProvider.java │ │ │ └── UI.java │ │ │ ├── adapters │ │ │ └── ViewPagerAdapter.java │ │ │ └── models │ │ │ └── WeatherViewHolder.java │ └── test │ │ └── java │ │ └── cz │ │ └── martykan │ │ └── forecastie │ │ └── ExampleUnitTest.java └── proguard-rules.pro ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .reuse └── dep5 ├── README.ko.md ├── gradle.properties ├── .github └── workflows │ └── android.yml └── .circleci └── config.yml /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Forecastie 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/icon.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | A simple, copylefted libre software weather app for Android. 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/assets/fonts/weather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/assets/fonts/weather.ttf -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/assets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/assets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/drawable-nodpi/widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_map_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/drawable-nodpi/widget_preview_simple.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/drawable-nodpi/widget_preview_time.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_map_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_cloud_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_cloud_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_map_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_water_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_water_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_cloud_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_magnify_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_magnify_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_refresh_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_refresh_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_water_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_water_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/tasks/ParseResult.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.tasks; 2 | 3 | public enum ParseResult {OK, JSON_EXCEPTION, CITY_NOT_FOUND} 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_magnify_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_settings_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/sharp_settings_white_48.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/widget_preview_time_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/app/src/main/res/drawable-nodpi/widget_preview_time_classic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_weather_windy_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_thermometer_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_thermometer_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_my_location_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/sharp_my_location_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #5F7C89 4 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/fastlane/metadata/android/en-US/images/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/ic_weather_windy_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_thermometer_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_weather_windy_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/ic_weather_windy_white_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-hdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-mdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_black_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/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/easyw/forecastie/master/app/src/main/res/drawable-xxxhdpi/sharp_insert_chart_outlined_white_48.png -------------------------------------------------------------------------------- /app/src/main/res/values/keys.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "3e29e62e2ddf6dd3d2ebd28aed069215" 4 | 5 | -------------------------------------------------------------------------------- /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/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tab_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 240dp 3 | 16dp 4 | 16dp 5 | 6 | 16dp 7 | 16dp 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/water.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 String DEFAULT_LAT = "51.5072"; 6 | public static final String 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/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/test/java/cz/martykan/forecastie/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/ic_cloud_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/cloud.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /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/drawable/widget_card_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/xml/simple_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_insert_chart_outlined_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/extensive_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/time_widget_classic.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/map.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/thermometer.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/SplashActivity.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.activities; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import androidx.appcompat.app.AppCompatActivity; 6 | 7 | public class SplashActivity extends AppCompatActivity { 8 | 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | 13 | Intent intent = new Intent(this, MainActivity.class); 14 | startActivity(intent); 15 | finish(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/magnify.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recycler_view.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /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/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/viewmodels/MapViewModel.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.viewmodels; 2 | 3 | import androidx.lifecycle.ViewModel; 4 | import android.content.SharedPreferences; 5 | 6 | import cz.martykan.forecastie.Constants; 7 | 8 | 9 | public class MapViewModel extends ViewModel { 10 | public SharedPreferences sharedPreferences; 11 | public String apiKey; 12 | public double mapLat = Double.parseDouble(Constants.DEFAULT_LAT); 13 | public double mapLon = Double.parseDouble(Constants.DEFAULT_LON); 14 | public int mapZoom = Constants.DEFAULT_ZOOM_LEVEL; 15 | public int tabPosition = 0; 16 | } 17 | -------------------------------------------------------------------------------- /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/sharp_my_location_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_map_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | android.enableJetifier=true 13 | android.useAndroidX=true 14 | org.gradle.jvmargs=-Xmx1536m 15 | 16 | # When configured, Gradle will run in incubating parallel mode. 17 | # This option should only be used with decoupled projects. More details, visit 18 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 19 | # org.gradle.parallel=true 20 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/Language.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils; 2 | 3 | import java.util.Locale; 4 | 5 | public class Language { 6 | 7 | /** 8 | * Returns the language code used by OpenWeatherMap corresponding to the system's default 9 | * language. 10 | * @return language code 11 | */ 12 | public static String getOwmLanguage() { 13 | String language = Locale.getDefault().getLanguage(); 14 | 15 | if (language.equals(new Locale("cs").getLanguage())) { // Czech 16 | return "cz"; 17 | } else if (language.equals(new Locale("ko").getLanguage())) { // Korean 18 | return "kr"; 19 | } else if (language.equals(new Locale("lv").getLanguage())) { // Latvian 20 | return "la"; 21 | } else { 22 | return language; 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_toolbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_windy.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/TimeUtils.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils; 2 | 3 | import java.util.Calendar; 4 | import java.util.Date; 5 | 6 | import cz.martykan.forecastie.models.Weather; 7 | 8 | public class TimeUtils { 9 | 10 | public static boolean isDayTime(Weather W, Calendar Cal){ 11 | Date Sunrise = W.getSunrise(); 12 | Date Sunset = W.getSunset(); 13 | boolean day; 14 | if((Sunrise != null) && (Sunset != null)){ 15 | Date currentTime = Calendar.getInstance().getTime(); // Cal is always set to midnight 16 | // then get real time 17 | day = currentTime.after(W.getSunrise()) && currentTime.before(W.getSunset()); 18 | } 19 | else{ 20 | // fallback 21 | int hourOfDay = Cal.get(Calendar.HOUR_OF_DAY); 22 | day = (hourOfDay >= 7 && hourOfDay < 20); 23 | } 24 | return day; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/sharp_settings_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 14 | 15 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/adapters/ViewPagerAdapter.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.adapters; 2 | 3 | import androidx.fragment.app.Fragment; 4 | import androidx.fragment.app.FragmentManager; 5 | import androidx.fragment.app.FragmentPagerAdapter; 6 | 7 | import java.util.ArrayList; 8 | import java.util.List; 9 | 10 | public class ViewPagerAdapter extends FragmentPagerAdapter { 11 | private final List fragmentList = new ArrayList<>(); 12 | private final List fragmentTitleList = new ArrayList<>(); 13 | 14 | public ViewPagerAdapter(FragmentManager manager) { 15 | super(manager); 16 | } 17 | 18 | @Override 19 | public Fragment getItem(int position) { 20 | return fragmentList.get(position); 21 | } 22 | 23 | @Override 24 | public int getCount() { 25 | return fragmentList.size(); 26 | } 27 | 28 | public void addFragment(Fragment fragment, String title) { 29 | fragmentList.add(fragment); 30 | fragmentTitleList.add(title); 31 | } 32 | 33 | @Override 34 | public CharSequence getPageTitle(int position) { 35 | return fragmentTitleList.get(position); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_dialog_ambiguous_location.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/certificate/CertificatesTrustManager.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils.certificate; 2 | 3 | import androidx.annotation.NonNull; 4 | 5 | import java.security.cert.CertificateException; 6 | import java.security.cert.X509Certificate; 7 | 8 | import javax.net.ssl.X509TrustManager; 9 | 10 | /** 11 | * TrustManager to retrieve Open Weather Map certificates. 12 | */ 13 | class CertificatesTrustManager implements X509TrustManager { 14 | private X509Certificate[] certificates = new X509Certificate[0]; 15 | 16 | @Override 17 | public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException { 18 | throw new CertificateException("Client certificates are not trusted"); 19 | } 20 | 21 | @Override 22 | public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException { 23 | if (chain != null) { 24 | certificates = chain; 25 | } 26 | } 27 | 28 | @Override 29 | public X509Certificate[] getAcceptedIssuers() { 30 | return new X509Certificate[0]; 31 | } 32 | 33 | @NonNull 34 | public X509Certificate[] getCertificates() { 35 | return certificates; 36 | } 37 | } -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- 1 | name: Build and release 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v1 10 | - name: set up JDK 1.8 11 | uses: actions/setup-java@v1 12 | with: 13 | java-version: 1.8 14 | - name: Build with Gradle 15 | run: | 16 | ./gradlew build 17 | cp /home/runner/work/forecastie/forecastie/app/build/outputs/apk/release/app-release-unsigned.apk /home/runner/work/forecastie/forecastie/forecastie.apk 18 | pwd > file_list.txt 19 | ls -lR >> file_list.txt 20 | 21 | - name: Upload .apk 22 | uses: actions/upload-artifact@v1 23 | with: 24 | name: Forecastie 25 | path: forecastie.apk 26 | 27 | release: 28 | runs-on: ubuntu-latest 29 | needs: [build] 30 | steps: 31 | - name: Release 32 | uses: fnkr/github-action-ghr@v1.3 33 | if: startsWith(github.ref, 'refs/tags/') 34 | env: 35 | GHR_PATH: /github/workspace/forecastie.apk 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 37 | 38 | #- name: Download 39 | #uses: actions/download-artifact@v1 40 | #id: download 41 | #with: 42 | #name: 'Forecastie' 43 | #path: ./build/ 44 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/models/WeatherViewHolder.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.models; 2 | 3 | import androidx.recyclerview.widget.RecyclerView; 4 | import android.view.View; 5 | import android.widget.TextView; 6 | 7 | import cz.martykan.forecastie.R; 8 | 9 | public class WeatherViewHolder extends RecyclerView.ViewHolder { 10 | public TextView itemDate; 11 | public TextView itemTemperature; 12 | public TextView itemDescription; 13 | public TextView itemyWind; 14 | public TextView itemPressure; 15 | public TextView itemHumidity; 16 | public TextView itemIcon; 17 | public View lineView; 18 | 19 | public WeatherViewHolder(View view) { 20 | super(view); 21 | this.itemDate = (TextView) view.findViewById(R.id.itemDate); 22 | this.itemTemperature = (TextView) view.findViewById(R.id.itemTemperature); 23 | this.itemDescription = (TextView) view.findViewById(R.id.itemDescription); 24 | this.itemyWind = (TextView) view.findViewById(R.id.itemWind); 25 | this.itemPressure = (TextView) view.findViewById(R.id.itemPressure); 26 | this.itemHumidity = (TextView) view.findViewById(R.id.itemHumidity); 27 | this.itemIcon = (TextView) view.findViewById(R.id.itemIcon); 28 | this.lineView = view.findViewById(R.id.lineView); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/StubContentProvider.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils; 2 | 3 | import android.content.ContentProvider; 4 | import android.content.ContentValues; 5 | import android.database.Cursor; 6 | import android.net.Uri; 7 | import androidx.annotation.NonNull; 8 | import androidx.annotation.Nullable; 9 | 10 | public class StubContentProvider extends ContentProvider { 11 | @Override 12 | public boolean onCreate() { 13 | return true; 14 | } 15 | 16 | @Nullable 17 | @Override 18 | public Cursor query(@NonNull Uri uri, @Nullable String[] strings, @Nullable String s, @Nullable String[] strings1, @Nullable String s1) { 19 | return null; 20 | } 21 | 22 | @Nullable 23 | @Override 24 | public String getType(@NonNull Uri uri) { 25 | return null; 26 | } 27 | 28 | @Nullable 29 | @Override 30 | public Uri insert(@NonNull Uri uri, @Nullable ContentValues contentValues) { 31 | return null; 32 | } 33 | 34 | @Override 35 | public int delete(@NonNull Uri uri, @Nullable String s, @Nullable String[] strings) { 36 | return 0; 37 | } 38 | 39 | @Override 40 | public int update(@NonNull Uri uri, @Nullable ContentValues contentValues, @Nullable String s, @Nullable String[] strings) { 41 | return 0; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | build: 4 | working_directory: ~/code 5 | docker: 6 | - image: circleci/android:api-27 7 | environment: 8 | JVM_OPTS: -Xmx3200m 9 | steps: 10 | - checkout 11 | - restore_cache: 12 | key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} 13 | - run: 14 | name: Chmod permissions #if permission for Gradlew Dependencies fail, use this. 15 | command: sudo chmod +x ./gradlew 16 | - run: 17 | name: Download Dependencies 18 | command: ./gradlew androidDependencies 19 | - save_cache: 20 | paths: 21 | - ~/.gradle 22 | key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} 23 | - run: 24 | name: Build debug APK 25 | command: ./gradlew :app:assembleDebug 26 | - run: 27 | # place holder for real code to upload artifacts 28 | name: Creating Dummy Artifacts 29 | command: | 30 | echo "my artifact file" > /tmp/artifact-1; 31 | mkdir /tmp/artifacts; 32 | echo "my artifact files in a dir" > /tmp/artifacts/artifact-2; 33 | 34 | - store_artifacts: 35 | path: /tmp/artifact-1 36 | destination: artifact-file 37 | 38 | - store_artifacts: 39 | path: /tmp/artifacts 40 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/utils/UI.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.utils; 2 | 3 | import android.app.Activity; 4 | import android.os.Build; 5 | import android.view.View; 6 | 7 | import cz.martykan.forecastie.R; 8 | 9 | public class UI { 10 | 11 | public static void setNavigationBarMode(Activity context, boolean darkTheme, boolean blackTheme) { 12 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O_MR1) { 13 | View content = context.findViewById(android.R.id.content); 14 | if (!darkTheme && !blackTheme) { 15 | content.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR); 16 | } 17 | } 18 | } 19 | 20 | public static int getTheme(String themePref) { 21 | switch (themePref) { 22 | case "dark": 23 | return R.style.AppTheme_NoActionBar_Dark; 24 | case "black": 25 | return R.style.AppTheme_NoActionBar_Black; 26 | case "classic": 27 | return R.style.AppTheme_NoActionBar_Classic; 28 | case "classicdark": 29 | return R.style.AppTheme_NoActionBar_Classic_Dark; 30 | case "classicblack": 31 | return R.style.AppTheme_NoActionBar_Classic_Black; 32 | default: 33 | return R.style.AppTheme_NoActionBar; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/src/main/java/cz/martykan/forecastie/activities/BaseActivity.java: -------------------------------------------------------------------------------- 1 | package cz.martykan.forecastie.activities; 2 | 3 | import android.annotation.SuppressLint; 4 | import android.content.SharedPreferences; 5 | import android.os.Bundle; 6 | import android.preference.PreferenceManager; 7 | import androidx.annotation.Nullable; 8 | import androidx.appcompat.app.AppCompatActivity; 9 | 10 | import cz.martykan.forecastie.R; 11 | import cz.martykan.forecastie.utils.UI; 12 | 13 | @SuppressLint("Registered") 14 | public class BaseActivity extends AppCompatActivity { 15 | protected int theme; 16 | protected boolean darkTheme; 17 | protected boolean blackTheme; 18 | 19 | @Override 20 | protected void onCreate(@Nullable Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | 23 | SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this); 24 | //noinspection ConstantConditions 25 | setTheme(theme = UI.getTheme(prefs.getString("theme", "fresh"))); 26 | darkTheme = theme == R.style.AppTheme_NoActionBar_Dark || 27 | theme == R.style.AppTheme_NoActionBar_Classic_Dark; 28 | blackTheme = theme == R.style.AppTheme_NoActionBar_Black || 29 | theme == R.style.AppTheme_NoActionBar_Classic_Black; 30 | 31 | UI.setNavigationBarMode(BaseActivity.this, darkTheme, blackTheme); 32 | } 33 | } 34 | --------------------------------------------------------------------------------