Change App Name¶
To change the name of your app, you need to update the configuration files for both Android and iOS.
Android¶
- Open your Flutter project in your code editor.
- Navigate to
android/app/src/main/AndroidManifest.xml
. - Locate the
android:label
attribute within the<application>
tag. -
Replace the existing value with your desired app name.
iOS¶
- Open your Flutter project in your code editor.
- Navigate to
ios/Runner/Info.plist
. - Locate the
CFBundleName
key. -
Replace the existing value with your desired app name.
(Please note that the file paths and attribute names in your project may be slightly different. The image below shows an example of what to look for.)
After changing the app name in the configuration files, rebuild your app to see the new name on the home screen.