更改应用名称
iOS
iOS 应用名称定义在 /ios/PROJECT_NAME/Info.plist
文件中,修改 CFBundleDisplayName
的值。
Info.plist
1<dict>
2 <key>CFBundleDisplayName</key>
3 <string>YOUR_APP_NAME</string>
4</dict>
Android
安卓应用名称定义在 /android/app/src/main/res/values/string.xml
文件中,修改 app_name
的值。
string.xml
1<resources>
2 <string name="app_name">YOUR_APP_NAME</string>
3</resources>
参考