flutter_app_renamer 1.0.2
flutter_app_renamer: ^1.0.2 copied to clipboard
A command-line tool that makes it easy to change your Flutter AppName and BundleID on all platforms.
Getting started #
Add the following dev dependency to your pubspec.yaml file (either GitHub or pub.dev):
From GitHub:
dev_dependencies:
flutter_app_renamer:
git:
url: https://github.com/MokuluaDev/flutter_app_renamer.git
ref: main
From pub.dev:
dev_dependencies:
flutter_app_renamer: ^1.0.2
Then add the following (name is required; id is optional):
flutter_app_name:
name: "Your New Name Here"
id: "com.example.optional"
Usage #
After updating your pubspec.yaml file, run the following in the terminal (in your project's directory):
flutter pub get
dart run flutter_app_renamer
If it doesn't work, you may need to run
flutter clean
and try again.