├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── cd-pub-deploy-published-release.yml │ └── ci-open-pr.yml ├── .gitignore ├── .pubignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin ├── flutter_launcher_icons.dart ├── generate.dart └── main.dart ├── example ├── default_example │ ├── .metadata │ ├── README.md │ ├── assets │ │ └── images │ │ │ ├── background-test.png │ │ │ ├── christmas-background.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon-1024x1024.png │ │ │ ├── icon-128x128.png │ │ │ ├── icon-710x599-android.png │ │ │ ├── icon-710x599-ios.png │ │ │ ├── icon-710x599.png │ │ │ ├── icon-foreground-432x432.png │ │ │ └── icon-monochrome-432x432.png │ └── pubspec.yaml ├── example.md └── flavors │ ├── .metadata │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── development │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── integration │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── flutter │ │ │ │ │ └── icons │ │ │ │ │ ├── example_with_flavors │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── flavors │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ ├── production │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── flavors_android.iml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── assets │ └── launcher_icon │ │ ├── demo-icon-dev.png │ │ ├── demo-icon-int.png │ │ └── demo-icon.png │ ├── flavors.iml │ ├── flutter_launcher_icons-development.yaml │ ├── flutter_launcher_icons-integration.yaml │ ├── flutter_launcher_icons-production.yaml │ └── pubspec.yaml ├── flutter_launcher_icons.code-workspace ├── lib ├── abs │ └── icon_generator.dart ├── android.dart ├── config │ ├── config.dart │ ├── config.g.dart │ ├── macos_config.dart │ ├── macos_config.g.dart │ ├── web_config.dart │ ├── web_config.g.dart │ ├── windows_config.dart │ └── windows_config.g.dart ├── constants.dart ├── custom_exceptions.dart ├── ios.dart ├── logger.dart ├── macos │ ├── macos_icon_generator.dart │ └── macos_icon_template.dart ├── main.dart ├── pubspec_parser.dart ├── src │ └── version.dart ├── utils.dart ├── web │ ├── web_icon_generator.dart │ └── web_template.dart ├── windows │ └── windows_icon_generator.dart └── xml_templates.dart ├── pubspec.yaml └── test ├── abs ├── icon_generator_test.dart └── icon_generator_test.mocks.dart ├── all_tests.dart ├── android_test.dart ├── assets └── app_icon.png ├── config └── test_pubspec.yaml ├── config_test.dart ├── macos ├── macos_icon_generator_test.dart ├── macos_icon_generator_test.mocks.dart └── macos_icon_template_test.dart ├── main_test.dart ├── package_version_test.dart ├── templates.dart ├── utils_test.dart ├── web ├── web_icon_generator_test.dart └── web_template_test.dart └── windows ├── windows_icon_generator_test.dart └── windows_icon_generator_test.mocks.dart /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/cd-pub-deploy-published-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.github/workflows/cd-pub-deploy-published-release.yml -------------------------------------------------------------------------------- /.github/workflows/ci-open-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.github/workflows/ci-open-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.gitignore -------------------------------------------------------------------------------- /.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.pubignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/flutter_launcher_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/bin/flutter_launcher_icons.dart -------------------------------------------------------------------------------- /bin/generate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/bin/generate.dart -------------------------------------------------------------------------------- /bin/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/bin/main.dart -------------------------------------------------------------------------------- /example/default_example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/.metadata -------------------------------------------------------------------------------- /example/default_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/README.md -------------------------------------------------------------------------------- /example/default_example/assets/images/background-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/background-test.png -------------------------------------------------------------------------------- /example/default_example/assets/images/christmas-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/christmas-background.png -------------------------------------------------------------------------------- /example/default_example/assets/images/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/ic_launcher.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-1024x1024.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-128x128.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-710x599-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-710x599-android.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-710x599-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-710x599-ios.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-710x599.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-710x599.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-foreground-432x432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-foreground-432x432.png -------------------------------------------------------------------------------- /example/default_example/assets/images/icon-monochrome-432x432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/assets/images/icon-monochrome-432x432.png -------------------------------------------------------------------------------- /example/default_example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/default_example/pubspec.yaml -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/example.md -------------------------------------------------------------------------------- /example/flavors/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/.metadata -------------------------------------------------------------------------------- /example/flavors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/README.md -------------------------------------------------------------------------------- /example/flavors/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/.gitignore -------------------------------------------------------------------------------- /example/flavors/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/build.gradle -------------------------------------------------------------------------------- /example/flavors/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/development/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/development/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/development/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/development/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/integration/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/integration/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/integration/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/integration/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/integration/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/integration/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/integration/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/integration/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/integration/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/integration/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/kotlin/com/flutter/icons/example_with_flavors/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/kotlin/com/flutter/icons/example_with_flavors/MainActivity.kt -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/kotlin/com/flutter/icons/flavors/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/kotlin/com/flutter/icons/flavors/MainActivity.kt -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/flavors/android/app/src/production/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/production/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/production/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/production/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/production/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/production/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/flavors/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/flavors/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/build.gradle -------------------------------------------------------------------------------- /example/flavors/android/flavors_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/flavors_android.iml -------------------------------------------------------------------------------- /example/flavors/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/gradle.properties -------------------------------------------------------------------------------- /example/flavors/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/flavors/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/android/settings.gradle -------------------------------------------------------------------------------- /example/flavors/assets/launcher_icon/demo-icon-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/assets/launcher_icon/demo-icon-dev.png -------------------------------------------------------------------------------- /example/flavors/assets/launcher_icon/demo-icon-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/assets/launcher_icon/demo-icon-int.png -------------------------------------------------------------------------------- /example/flavors/assets/launcher_icon/demo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/assets/launcher_icon/demo-icon.png -------------------------------------------------------------------------------- /example/flavors/flavors.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/flavors.iml -------------------------------------------------------------------------------- /example/flavors/flutter_launcher_icons-development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/flutter_launcher_icons-development.yaml -------------------------------------------------------------------------------- /example/flavors/flutter_launcher_icons-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/flutter_launcher_icons-integration.yaml -------------------------------------------------------------------------------- /example/flavors/flutter_launcher_icons-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/flutter_launcher_icons-production.yaml -------------------------------------------------------------------------------- /example/flavors/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/example/flavors/pubspec.yaml -------------------------------------------------------------------------------- /flutter_launcher_icons.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/flutter_launcher_icons.code-workspace -------------------------------------------------------------------------------- /lib/abs/icon_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/abs/icon_generator.dart -------------------------------------------------------------------------------- /lib/android.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/android.dart -------------------------------------------------------------------------------- /lib/config/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/config.dart -------------------------------------------------------------------------------- /lib/config/config.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/config.g.dart -------------------------------------------------------------------------------- /lib/config/macos_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/macos_config.dart -------------------------------------------------------------------------------- /lib/config/macos_config.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/macos_config.g.dart -------------------------------------------------------------------------------- /lib/config/web_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/web_config.dart -------------------------------------------------------------------------------- /lib/config/web_config.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/web_config.g.dart -------------------------------------------------------------------------------- /lib/config/windows_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/windows_config.dart -------------------------------------------------------------------------------- /lib/config/windows_config.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/config/windows_config.g.dart -------------------------------------------------------------------------------- /lib/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/constants.dart -------------------------------------------------------------------------------- /lib/custom_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/custom_exceptions.dart -------------------------------------------------------------------------------- /lib/ios.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/ios.dart -------------------------------------------------------------------------------- /lib/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/logger.dart -------------------------------------------------------------------------------- /lib/macos/macos_icon_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/macos/macos_icon_generator.dart -------------------------------------------------------------------------------- /lib/macos/macos_icon_template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/macos/macos_icon_template.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pubspec_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/pubspec_parser.dart -------------------------------------------------------------------------------- /lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '0.14.4'; 3 | -------------------------------------------------------------------------------- /lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/utils.dart -------------------------------------------------------------------------------- /lib/web/web_icon_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/web/web_icon_generator.dart -------------------------------------------------------------------------------- /lib/web/web_template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/web/web_template.dart -------------------------------------------------------------------------------- /lib/windows/windows_icon_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/windows/windows_icon_generator.dart -------------------------------------------------------------------------------- /lib/xml_templates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/lib/xml_templates.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/abs/icon_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/abs/icon_generator_test.dart -------------------------------------------------------------------------------- /test/abs/icon_generator_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/abs/icon_generator_test.mocks.dart -------------------------------------------------------------------------------- /test/all_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/all_tests.dart -------------------------------------------------------------------------------- /test/android_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/android_test.dart -------------------------------------------------------------------------------- /test/assets/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/assets/app_icon.png -------------------------------------------------------------------------------- /test/config/test_pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/config/test_pubspec.yaml -------------------------------------------------------------------------------- /test/config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/config_test.dart -------------------------------------------------------------------------------- /test/macos/macos_icon_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/macos/macos_icon_generator_test.dart -------------------------------------------------------------------------------- /test/macos/macos_icon_generator_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/macos/macos_icon_generator_test.mocks.dart -------------------------------------------------------------------------------- /test/macos/macos_icon_template_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/macos/macos_icon_template_test.dart -------------------------------------------------------------------------------- /test/main_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/main_test.dart -------------------------------------------------------------------------------- /test/package_version_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/package_version_test.dart -------------------------------------------------------------------------------- /test/templates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/templates.dart -------------------------------------------------------------------------------- /test/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/utils_test.dart -------------------------------------------------------------------------------- /test/web/web_icon_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/web/web_icon_generator_test.dart -------------------------------------------------------------------------------- /test/web/web_template_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/web/web_template_test.dart -------------------------------------------------------------------------------- /test/windows/windows_icon_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/windows/windows_icon_generator_test.dart -------------------------------------------------------------------------------- /test/windows/windows_icon_generator_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/flutter_launcher_icons/HEAD/test/windows/windows_icon_generator_test.mocks.dart --------------------------------------------------------------------------------