Changing App Name
Android
- Open
android/app/src/main/AndroidManifest.xml
- Update the
android:label
attribute:xml<application android:label="Your New App Name" ...
iOS
- Open
ios/Runner/Info.plist
- Update the
CFBundleName
andCFBundleDisplayName
:xml<key>CFBundleName</key> <string>Your New App Name</string> <key>CFBundleDisplayName</key> <string>Your New App Name</string>