atiqsamtia / change_app_package_name

Change App Package Name with single command. It makes the process very easy and fast.
https://pub.dev/packages/change_app_package_name
MIT License
139 stars 68 forks source link
android android-app flutter flutter-app flutter-package

Change App Package Name for Flutter

Change App Package Name with single command. It makes the process very easy and fast.

What It does?

How to Use?

Add Change App Package Name to your pubspec.yaml in dev_dependencies: section.

dev_dependencies: 
  change_app_package_name: ^1.4.0

or run this command

flutter pub add -d change_app_package_name

Not migrated to null safety yet? use old version like this

dev_dependencies: 
  change_app_package_name: ^1.4.0

Update dependencies

flutter pub get

Run this command to change the package name for both platforms.

dart run change_app_package_name:main com.new.package.name

To rename only Android:

dart run change_app_package_name:main com.new.package.name --android

To rename only IOS:

dart run change_app_package_name:main com.new.package.name --ios

Where com.new.package.name is the new package name that you want for your app. replace it with any name you want.

Meta

Atiq Samtia– @AtiqSamtia – me@atiqsamtia.com

Distributed under the MIT license.

https://github.com/atiqsamtia/change_app_package_name

Contributing

  1. Fork it (https://github.com/atiqsamtia/change_app_package_name/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request