본문 바로가기
ETC/Flutter

[flutter] App 이름 설정하기

by 안주형 2021. 10. 18.

Android

Open AndroidManifest.xml (위치: android/app/src/main)

<application
    android:label="App Name" ...> // Your app name here

IOS

Open info.plist (위치: ios/Runner)

<key>CFBundleName</key>
<string>App Name</string> // Your app name here

댓글