Study Record

[Flutter] 앱 이름 바꾸기 (app name) 본문

Flutter

[Flutter] 앱 이름 바꾸기 (app name)

초코초코초코 2023. 4. 22. 23:14
728x90

🎁 android 에서 앱 이름 변경하기

안드로이드에서는 android/app/src/main/AndroidManifest.xml 파일의 android:label 에 앱 이름을 적으면 된다.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.vocabulary.japanese_vocabulary">
   <application
        android:label="앱 이름"
        android:name="${applicationName}"
        android:icon="@mipmap/launcher_icon">
  ...</application>
</manifest>

 

 

 

🎁 IOS 에서 앱 이름 변경하기

IOS 에서는 ios/Runner/Info.plist 파일에 CFBundleDisplayName 의 값으로 앱 이름을 입력해 준다.

<?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>CFBundleDisplayName</key>
    <string>앱 이름</string>
    ...
  </dict>
</plist>

 

 

728x90