본문 바로가기
Development Solutions/Flutter & Dart

[Flutter][Android][iOS] 출시 앱 이름 변경 방법 (How to change the launch app name)

by Dev Diary Hub 2023. 10. 19.
반응형

출시 앱 이름 변경 방법 (How to change the launch app name)

[Flutter][Android][iOS]

 

플러터로 개발하는 경우,

안드로이드 네이티브 파일과 iOS 네이티브 파일을 각각 수정해줘야 한다.

 

각 OS의 네이티브 개발자의 경우에도

아래 순서와 동일하게 수정하면 되니 그대로 수정을 진행하면 되겠다.

반응형

안드로이드 - AndroidManifest.xml 수정

iOS - Info.plist 수정

 

(When developing with Flutter, Android native files and iOS native files must be modified separately.
Even for native developers of each OS, You can modify it in the same order as below, so proceed with the modification.)

 

안드로이드 - 앱 이름 수정 (Android - Edit app name)

아래와 같이 app/src/main/AndroidManifest.xml 를 열고

android:label 뒤의 문자열에 출시할 앱 이름을 기입하면 된다.

(Open app/src/main/AndroidManifest.xml as shown below. Just enter the name of the app to be released in the string after android:label.)

 

iOS(아이폰, 아이패드) - 앱 이름 수정 (iOS (iPhone, iPad) - Edit app name)

아래와 같이 ios/Runner/Info.plist 를 열고

CFBundleDisplayName 뒤의 문자열에 출시할 앱 이름을 기입하면 된다.

(Open ios/Runner/Info.plist as shown below. Just enter the name of the app to be released in the string after CFBundleDisplayName.)

반응형