카테고리 없음

[flutter] 앱(App) 이름 변경하기

devdevcat2dog 2024. 7. 13. 20:43

1. Android

AndroidManifest.xml 파일에서 application 태그의 label 값을 변경해 줍니다.

android/app/src/main/AndroidManifest.xml

 

<application

           android:label="앱 이름 변경"

           android:name="${applicationName}"

           android:icon="@mipmap/launcher_icon">

 

 

2. ios

ios/Runner/Info.plist 파일에서 CFBundleDisplayName 키의 값을 변경해 줍니다.

ios/Runner/Info.plist

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
 <key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
    <string>dev.flutter.background.refresh</string>
</array>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>앱 이름 입력</string>
    ...