xxxxxxxxxx
The Androidmanifest.xml can now be modified. Choose the
<application
android:name="io.flutter.app.FlutterApplication"
android:label="YourAppName"
android:icon="@mipmap/ic_launcher">
For Package Name
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="your.package.name">
xxxxxxxxxx
Android
Open AndroidManifest.xml (located at android/app/src/main)
<application
android:label="App Name" > // Your app name here
iOS
Open info.plist (located at ios/Runner)
<key>CFBundleDisplayName</key>
<string>App Name</string> // Your app name here
xxxxxxxxxx
You can easily do this with rename package,
It helps you to change your Flutter project's
AppName and BundleId for any platform you want.
To install the package run the following command:
flutter pub global activate rename
To rename the App, use the following command:
rename setAppName --targets ios,android,macos,windows,linux,web --value "Your App Name"
That's It!
xxxxxxxxxx
For Android
Inside, find <application>and change its android:label property with your desired app name.
android/app/src/main/AndroidManifest.xml
<application
android:name="io.flutter.app.FlutterApplication"
android:label="your_app_name"
android:icon="@mipmap/ic_launcher">
iOS
ios/Runner/Info.plist
<key>CFBundleName</key>
<string>your_app_name</string>