Updating App Display Names
To change the display name shown on user devices (under the launcher icon):
Android
📂 File Path: android/app/src/main/AndroidManifest.xml
Find the android:label attribute under the <application> tag and update it:
<application
android:label="Your Brand Name"
...
iOS
📂 File Path: ios/Runner/Info.plist
Find the key CFBundleDisplayName or CFBundleName and update the string value:
<key>CFBundleDisplayName</key>
<string>Your Brand Name</string>
<key>CFBundleName</key>
<string>Your Brand Name</string>
Still stuck?
Our support team is ready to help you get set up.

