플러서 앱 이름 바꾸는 법
안드로이드
app/src/main/AndroidManifest.xml 에 들어가서
<application
android:label="앱 이름"
label에 이름을 변경하면 됩니다.
iOS
ios/Runner/Info.plist 에 들어가서
<key>CFBundleDisplayName</key>
<string>앱 이름</string>
CFBundleDisplayName 을 찾고 아래 string 에 이름을 변경하면 됩니다.
'Language > Flutter' 카테고리의 다른 글
[Flutter] /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: AAPT: error: file failed to compile. 에러 해결방법 (0) | 2024.11.23 |
---|---|
[Flutter] 앱 아이콘 변경 (0) | 2024.11.22 |
[Flutter] 위젯 생명주기(Lifecycle) (0) | 2024.11.20 |
[Dart] fold() 메소드 (0) | 2024.11.19 |
[Flutter] 상태 관리 기초 - setState (0) | 2024.11.18 |