Flutter App Renamer
A command-line tool that makes it easy to change your project's AppName and BundleID by defining them in your pubspec.yaml file.
How It Works
Flutter App Renamer uses rename behind the scenes to handle the heavy lifting. This package allows you to define your AppName and BundleID in pubspec.yaml and then update them with slightly less effort.
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.3
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.
Libraries
- flutter_app_renamer
- Copyright (c) 2023 Mokulua Software Studio. All rights reserved. Use of this source code is governed by the MIT license that can be found in the LICENSE file. Easily change your AppName and BundleID on all platforms