Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomasecalle/flutter_rename_app
A tool to entirely rename your Flutter app easily
https://github.com/thomasecalle/flutter_rename_app
flutter flutter-package flutter-tool mobile-development
Last synced: 2 days ago
JSON representation
A tool to entirely rename your Flutter app easily
- Host: GitHub
- URL: https://github.com/thomasecalle/flutter_rename_app
- Owner: ThomasEcalle
- License: mit
- Created: 2019-12-28T18:40:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T15:08:31.000Z (over 2 years ago)
- Last Synced: 2023-08-20T22:04:30.193Z (over 1 year ago)
- Topics: flutter, flutter-package, flutter-tool, mobile-development
- Language: Dart
- Homepage:
- Size: 1.35 MB
- Stars: 19
- Watchers: 2
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_rename_app
Rename Flutter applications in one command.
> This package assumes that you created your flutter project using `flutter create` command line.
## Usage
### Add dependency
```
dev_dependencies:
flutter_test:
sdk: flutter
flutter_rename_app:
```### Define Settings
```
flutter_rename_app:
application_name: Bank App
dart_package_name: bank_app
application_id: com.android.bank
bundle_id: com.ios.bank
android_package_name: com.bank.app
```| setting | description | required |
| ---- | -- | -- |
| application_name | Your application's name | yes |
| dart_package_name | The dart package name (used in all imports in your `lib` or `test` directories) | no |
| application_id | The android `application_id`, must be unique on the Play Store | no |
| bundle_id | The iOS `bundle_id`, must be unique on the Apple Store | no |
| android_package_name | The android `package_name`, used only for the architecture of your android files | no |## Run package
Make sure that your current working directory is the project root.
> Make sure to be able to get back to previous state in case something went wrong, by commiting your work before running the package for example.
```
flutter pub get
flutter pub run flutter_rename_app
```