├── .github └── workflows │ └── push.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── org │ │ └── breezyweather │ │ └── pixeliconprovider │ │ ├── MainActivity.kt │ │ ├── PixelMoonDrawable.kt │ │ └── PixelSunDrawable.kt │ └── res │ ├── animator │ ├── weather_clear_day_1.xml │ ├── weather_clear_day_2.xml │ ├── weather_clear_night_1.xml │ ├── weather_cloudy_1.xml │ ├── weather_cloudy_2.xml │ ├── weather_fog_2.xml │ ├── weather_fog_3.xml │ ├── weather_hail_1.xml │ ├── weather_hail_2.xml │ ├── weather_hail_3.xml │ ├── weather_partly_cloudy_1.xml │ ├── weather_rain_1.xml │ ├── weather_rain_2.xml │ ├── weather_rain_3.xml │ ├── weather_snow_2.xml │ ├── weather_snow_3.xml │ ├── weather_thunderstorm_1.xml │ └── weather_wind_1.xml │ ├── drawable │ ├── shortcut_clear_day_pixel.png │ ├── shortcut_clear_day_pixel_f.png │ ├── shortcut_clear_night_pixel.png │ ├── shortcut_clear_night_pixel_f.png │ ├── shortcut_cloudy_pixel.png │ ├── shortcut_cloudy_pixel_f.png │ ├── shortcut_fog_pixel.png │ ├── shortcut_fog_pixel_f.png │ ├── shortcut_partly_cloudy_day_pixel.png │ ├── shortcut_partly_cloudy_day_pixel_f.png │ ├── shortcut_partly_cloudy_night_pixel.png │ ├── shortcut_partly_cloudy_night_pixel_f.png │ ├── shortcut_rain_pixel.png │ ├── shortcut_rain_pixel_f.png │ ├── shortcut_sleet_pixel.png │ ├── shortcut_sleet_pixel_f.png │ ├── shortcut_snow_pixel.png │ ├── shortcut_snow_pixel_f.png │ ├── shortcut_thunderstorm_pixel.png │ ├── shortcut_thunderstorm_pixel_f.png │ ├── shortcut_wind_pixel.png │ ├── shortcut_wind_pixel_f.png │ ├── weather_clear_day_pixel.png │ ├── weather_clear_night_pixel.png │ ├── weather_cloudy_1.png │ ├── weather_cloudy_2.png │ ├── weather_cloudy_pixel.png │ ├── weather_fog_2.png │ ├── weather_fog_pixel.png │ ├── weather_hail_pixel.png │ ├── weather_haze_pixel.png │ ├── weather_partly_cloudy_1.png │ ├── weather_partly_cloudy_day_pixel.png │ ├── weather_partly_cloudy_mini.png │ ├── weather_partly_cloudy_night_pixel.png │ ├── weather_partly_cloudy_night_pixel_moon.png │ ├── weather_rain_1.png │ ├── weather_rain_2.png │ ├── weather_rain_3.png │ ├── weather_rain_pixel.png │ ├── weather_sleet_3.png │ ├── weather_sleet_pixel.png │ ├── weather_snow_2.png │ ├── weather_snow_3.png │ ├── weather_snow_pixel.png │ ├── weather_thunderstorm_1.png │ ├── weather_thunderstorm_2.png │ ├── weather_thunderstorm_3.png │ ├── weather_thunderstorm_pixel.png │ ├── weather_wind_1.png │ ├── weather_wind_2.png │ └── weather_wind_pixel.png │ ├── values │ └── strings.xml │ └── xml │ ├── animator_filter.xml │ ├── config.xml │ ├── drawable_filter.xml │ ├── shortcut_filter.xml │ └── sun_moon_filter.xml ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── full_description.txt │ ├── images │ │ └── icon.png │ └── short_description.txt │ └── fr │ ├── full_description.txt │ ├── images │ └── icon.png │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/org/breezyweather/pixeliconprovider/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/java/org/breezyweather/pixeliconprovider/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/breezyweather/pixeliconprovider/PixelMoonDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/java/org/breezyweather/pixeliconprovider/PixelMoonDrawable.kt -------------------------------------------------------------------------------- /app/src/main/java/org/breezyweather/pixeliconprovider/PixelSunDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/java/org/breezyweather/pixeliconprovider/PixelSunDrawable.kt -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_clear_day_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_clear_day_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_clear_day_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_clear_day_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_clear_night_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_clear_night_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_cloudy_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_cloudy_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_cloudy_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_cloudy_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_fog_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_fog_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_fog_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_fog_3.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_hail_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_hail_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_hail_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_hail_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_hail_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_hail_3.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_partly_cloudy_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_partly_cloudy_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_rain_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_rain_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_rain_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_rain_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_rain_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_rain_3.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_snow_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_snow_2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_snow_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_snow_3.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_thunderstorm_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_thunderstorm_1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/weather_wind_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/animator/weather_wind_1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_clear_day_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_clear_day_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_clear_day_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_clear_day_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_clear_night_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_clear_night_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_clear_night_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_clear_night_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_cloudy_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_cloudy_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_cloudy_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_cloudy_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_fog_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_fog_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_fog_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_fog_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_partly_cloudy_day_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_partly_cloudy_day_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_partly_cloudy_day_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_partly_cloudy_day_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_partly_cloudy_night_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_partly_cloudy_night_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_partly_cloudy_night_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_partly_cloudy_night_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_rain_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_rain_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_rain_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_rain_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_sleet_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_sleet_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_sleet_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_sleet_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_snow_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_snow_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_snow_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_snow_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_thunderstorm_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_thunderstorm_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_thunderstorm_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_thunderstorm_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_wind_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_wind_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_wind_pixel_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/shortcut_wind_pixel_f.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_clear_day_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_clear_day_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_clear_night_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_clear_night_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_cloudy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_cloudy_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_cloudy_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_cloudy_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_cloudy_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_cloudy_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_fog_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_fog_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_fog_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_fog_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_hail_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_hail_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_haze_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_haze_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_partly_cloudy_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_partly_cloudy_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_partly_cloudy_day_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_partly_cloudy_day_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_partly_cloudy_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_partly_cloudy_mini.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_partly_cloudy_night_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_partly_cloudy_night_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_partly_cloudy_night_pixel_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_partly_cloudy_night_pixel_moon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_rain_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_rain_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_rain_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_rain_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_rain_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_rain_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_rain_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_rain_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_sleet_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_sleet_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_sleet_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_sleet_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_snow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_snow_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_snow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_snow_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_snow_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_snow_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_thunderstorm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_thunderstorm_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_thunderstorm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_thunderstorm_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_thunderstorm_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_thunderstorm_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_thunderstorm_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_thunderstorm_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_wind_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_wind_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_wind_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_wind_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/weather_wind_pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/drawable/weather_wind_pixel.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/animator_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/xml/animator_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/drawable_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/xml/drawable_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/shortcut_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/xml/shortcut_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/sun_moon_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/app/src/main/res/xml/sun_moon_filter.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/fr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/fr/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/fastlane/metadata/android/fr/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breezy-weather/pixel-icon-provider/HEAD/settings.gradle.kts --------------------------------------------------------------------------------