flutter
Flutter Android App Icon 변경 (초간단)
Rogan_Kim
2023. 9. 21. 10:25
728x90
참고
https://docs.flutter.dev/deployment/android#adding-a-launcher-icon
Build and release an Android app
How to prepare for and release an Android app to the Play store.
docs.flutter.dev
When a new Flutter app is created, it has a default launcher icon. To customize this icon, you might want to check out the flutter_launcher_icons package.
> 패키지로 플랫폼 별로 icons을 커스텀 할 수 있지만 패키지를 사용하지 않는 기본 런처 아이콘 변경 방법을 기록했습니다.
[project]/android/app/src/main/res/ 경로로 들어가서
'mipmap'으로 시작하는 파일들을 따로 생성한 Android App icon으로 교체하면 끝
App icon 생성하는 플랫폼에서 쉽게 아래의 구조의 App Icon들을 얻을 수 있습니다.
프로젝트를 실행하면 App Icon이 변경된 거를 확인 할 수 있습니다.
만약 변경되지 않았다면
res폴더 경로에 있는 AndroidManifest.xml에서
android:icon="@mipmap/ic_launcher" 가 있는지 확인하기
728x90