원클릭으로
icon-launcher-generator
Configures and runs the `flutter_launcher_icons` package to generate native app icons for iOS and Android.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Configures and runs the `flutter_launcher_icons` package to generate native app icons for iOS and Android.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | icon-launcher-generator |
| description | Configures and runs the `flutter_launcher_icons` package to generate native app icons for iOS and Android. |
When the user asks to generate app icons or update the app logo:
flutter_launcher_icons is in the dev_dependencies of the pubspec.yaml file (use the pubspec-manager skill or check manually).assets/icon/app_icon.png).pubspec.yaml file if it's not present:flutter_launcher_icons:
android: "launcher_icon"
ios: true
image_path: "assets/icon/app_icon.png" # Replace with actual path
run_in_terminal tool:dart run flutter_launcher_icons
Sweeps the `assets/` folder and registers them in `pubspec.yaml`, preventing runtime "Asset not found" crashes.
Executes `dart run build_runner build -d` to generate code for packages like Freezed, JSON Serializable, and Riverpod.
Applies Dart fixes and formats Dart code according to standard guidelines.
Generates a standard Domain-Driven Design (DDD) feature-first directory structure inside the `lib` folder.
Safely modifies `AndroidManifest.xml` and `Info.plist` to add native permissions (e.g., Camera, Location, Storage).
Cleans up the Flutter and iOS environments to recover from mysterious build errors and cached states.