Xgenious/ docs
Products
Get support

Updating Display Names

Change the name shown under the launcher icon on Android and iOS.

Android

File: android/app/src/main/AndroidManifest.xml

Find android:label under the <application> tag and update it:

<application
    android:label="Your Brand Name"
    android:icon="@mipmap/launcher_icon"
    ...>

iOS

File: ios/Runner/Info.plist

Update CFBundleDisplayName or CFBundleName:

<key>CFBundleDisplayName</key>
<string>Your Brand Name</string>
<key>CFBundleName</key>
<string>Your Brand Name</string>
Note

Tip: after changing labels, uninstall previous builds and reinstall to see the new name. Also update AppConfig.appName in Central Config for in-app branding consistency.

Still stuck?
Our support team is ready to help you get set up.
Get support