Updating Display Names
Change the name shown under the launcher icon.
Android
Primary file: android/app/src/main/AndroidManifest.xml
<application
android:label="Your Provider Brand Name"
android:icon="@mipmap/launcher_icon"
...>
Also update:
android/app/src/main/res/values/strings.xml
<resources>
<string name="app_name">Your Provider Brand Name</string>
<!-- ... -->
</resources>
Changing both ensures the label appears correctly on launchers and in system dialogs.
iOS
File: ios/Runner/Info.plist
<key>CFBundleDisplayName</key>
<string>Your Provider Brand Name</string>
<key>CFBundleName</key>
<string>prohand</string>
Note
The guide lists prohand as the default CFBundleName value — replace both keys with your brand string. Keep CFBundleName short (no spaces) if your tooling expects it.
After changing, also update appLabel / storeLabel in Customization and rebuild.
Still stuck?
Our support team is ready to help you get set up.

