package_rename_plus 1.0.1 package_rename_plus: ^1.0.1 copied to clipboard
A Blazingly Fast way to configure your awesome flutter project to be production ready.
Package Rename Plus #
A Blazingly Fast way to configure your Bleeding Edge flutter project to be production ready.
Package Rename handles changing 33 fields across 17 files on 6 platforms so you can focus on your awesome project.
For more info see list of changed fields
Getting started #
Add to Dependencies
dev_dependencies:
package_rename_plus: ^1.0.1
Create configuration
You can create configurations by adding package_rename_config
key in:
- Root
pubspec.yaml
file package_rename_config.yaml
file at root of your project or a custom folder in the project
Usage #
Adding Platform Specific Configurations
package_rename_config:
android:
app_name: # (String) The display name of the android app
package_name: # (String) The package name of the android app
override_old_package: # (Optional) (String) Use this to delete the old folder structure of MainActivity or to use the existing code with the new package name
lang: # (Optional) (String) The android development language {kotlin(default) or java}
ios:
app_name: # (String) The display name of the ios app
bundle_name: # (String) The bundle name of the ios app
override_old_package: # (String) Use this to replace the old bundle identifier with the new bundle identifier
package_name: # (String) The product bundle identifier of the ios app
linux:
app_name: # (String) The window title of the linux app
package_name: # (String) The application id of the linux app
exe_name: # (String) The executable name (binary name) of the linux app
macos:
app_name: # (String) The product name of the macos app
package_name: # (String) The product bundle identifier of the macos app
copyright_notice: # (String) The product copyright of the macos app
web:
app_name: # (String) The title and display name of the web app and PWA
description: # (String) The description of the web app and PWA
windows:
app_name: # (String) The window title & software name of the windows app
organization: # (String) The organization name (company name) of the windows app
copyright_notice: # (String) The legal copyright of the windows app
exe_name: # (String) The executable name (binary name) of the windows app
For full example click here
Running Package Rename
Execute the command as per your config location:
if config file exists in either pubspec.yaml or root path:
dart run package_rename_plus
OR
if config file exists in a custom folder:
dart run package_rename_plus --path="path/to/package_rename_config.yaml"
or
dart run package_rename_plus -p "path/to/package_rename_config.yaml"
Flavour Support #
Package Rename supports flavours. You can add flavour specific configurations by adding flavour_name
in configuration key.
package_rename_config-flavour_name:
# ...
For full example click here
And then run the following command:
dart run package_rename_plus --flavour=flavour_name
or
dart run package_rename_plus -f flavour_name
With custom config file location:
dart run package_rename_plus --flavour=flavour_name --path="path/to/package_rename_config.yaml"
And that's it! 🎉 #
Now you can deploy your production ready app to change the WORLD!