flutter custom app name
Write file pubspec.yaml:
dev_dependencies:
flutter_launcher_name: "^0.0.1"
flutter_launcher_name:
name: "yourNewAppLauncherName"
And run:
flutter pub get
flutter pub run flutter_launcher_name:main
flutter custom app name
Write file pubspec.yaml:
dev_dependencies:
flutter_launcher_name: "^0.0.1"
flutter_launcher_name:
name: "yourNewAppLauncherName"
And run:
flutter pub get
flutter pub run flutter_launcher_name:main
change package name flutter
flutter create --org com.yourdomain appname
change name of flutter app
#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>CFBundleName</key>
<string>App Name</string> // Your app name here
#Don't forget to run
$ flutter clean
flutter change package name
Go to build.gradle in app module and rename applicationId "com.company.name"
Go to Manifest.xml in app/src/main and rename package="com.company.name" and android:label="App Name"
Go to Manifest.xml in app/src/debug and rename package="com.company.name"
Go to Manifest.xml in app/src/profile and rename package="com.company.name"
Go to app/src/main/kotlin/com/something/something/MainActivity.kt and rename package="com.company.name"
Go to app/src/main/kotlin/ and rename each directory so that the structure looks like app/src/main/kotlin/com/company/name/
Go to pubspec.yaml in your project and change name: something to name: name, example :- if package name is com.abc.xyz the name: xyz
Go to each dart file in lib folder and rename the imports to the modified name.
Open XCode and open the runner file and click on Runner in project explorer.
Go to General -> double click on Bundle Identifier -> rename it to com.company.name
Go to Info.plist click on Bundle name -> rename it to your App Name.
close everything -> go to your flutter project and run this command in terminal flutter clean
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us