feat: 커스텀 앱 아이콘 적용

- 파란색 그라데이션 배경의 미디어 재생 아이콘으로 변경
- flutter_launcher_icons 패키지를 사용하여 모든 플랫폼용 아이콘 자동 생성
- Android: adaptive icon 지원 추가 (배경색 #4A90E2)
- iOS: 모든 필수 크기의 아이콘 생성 (20x20 ~ 1024x1024)
- pubspec.yaml에 flutter_launcher_icons 설정 추가

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
JiWoong Sul
2025-07-16 17:46:02 +09:00
parent 0f0b02bf08
commit f6a780124a
35 changed files with 23 additions and 2 deletions

View File

@@ -56,3 +56,15 @@ flutter:
assets:
- assets/data/
- assets/appicon/
flutter_launcher_icons:
android: true
ios: true
image_path: "assets/appicon/appicon.png"
min_sdk_android: 21
# Android Adaptive Icon 설정
adaptive_icon_background: "#4A90E2"
adaptive_icon_foreground: "assets/appicon/appicon.png"
# iOS 설정
remove_alpha_ios: true