Last updated:
0 purchases
flutter environment generator
Flutter Environment Generator CLI Tool v1 #
Warning #
This Package Use Dart Define Feature For Environments configuration
This Package Flavor Launcher only Support on Vscode IDE
About #
The Flutter Environment Generator CLI Tool is a versatile utility designed to simplify and manage critical configurations within your Flutter project. It streamlines the process of modifying your app's name and bundle identifier (Bundle ID) across multiple platforms with ease.
Android
IOS (Need Extra Config)
Key Features #
Generate Dart define configurations for different environments.
Automatically set up the mobile environment for Dev, Staging, and Production.
Seamlessly update your app's name and bundle identifier.
Installation #
To install the Rename CLI Tool, execute the following command:
flutter pub global activate flutter_environment_generator
copied to clipboard
Running a Script #
You can run a script directly using flutter_environment_generator from the activated package through the command line. If facing any issues, alternate commands are dart pub global run flutter_environment_generator or flutter pub global run flutter_environment_generator. For path variable issues, refer to ensuring your path variables are set up correctly.
Usage #
To utilize the Flutter Environment Generator CLI Tool, follow these simple steps:
Open your terminal or command prompt.
Navigate to the root directory of your Flutter project.
Run the following command:
flutter_environment_generator start
copied to clipboard
This command will trigger the tool and initiate the environment setup and configuration process for your project.
Now, sit back and let the Flutter Environment Generator CLI Tool simplify the management of your app's environment settings across various platforms with ease.
Run Your App On Vscode By Using Vscode Runner
or you can simply use this command in Terminal
// DEV
flutter run --flavor dev --dart-define-from- env_dev.json
// STAGING
flutter run --flavor staging --dart-define-from- env_staging.
// PRODUCTION
flutter run --flavor prod --dart-define-from- env_prod.json
copied to clipboard
Android App Name Configuration #
At First this code will be generated at android/app/build.gradle once you run the Flutter Environment Generator CLI Tool
You Can Edit the resValue for changing the App Label
flavorDimensions 'app'
productFlavors {
dev {
dimension "app"
resValue "string", "app_name", "package_test Dev" // YOU CAN EDIT THIS LINE FOR CHAGE THE APP LABEL
versionNameSuffix "-dev"
applicationId "com.example.package_test.dev"
}
staging {
dimension "app"
resValue "string", "app_name", "package_test Staging " // YOU CAN EDIT THIS LINE FOR CHAGE THE APP LABEL
versionNameSuffix "-stg"
applicationId "com.example.package_test.staging"
}
prod {
dimension "app"
resValue "string", "app_name", "package_test" // YOU CAN EDIT THIS LINE FOR CHAGE THE APP LABEL
applicationId "com.example.package_test"
}
}
copied to clipboard
IOS Extra Config #
Open Your IOS Folder in XCODE
Select Scheme at First it will be only 1 Scheme Called Runner
Duplicate Existing Scheme Into 3 Scheme and Rename all into like this(dev, staging, prod)
Now Goes to Runner Projects And Info
Then Duplicate all Configurations into 3 Config Each Like and rename it like this
Now Edit the each Scheme into Using right Configurations
Example For Staging Scheme using Debug staging, profile staging and release staging
For Changing App Label you can go to the runner Targets, Build Settings and search for Display
You can Also Configure the App Bundle ID in the build Settings
Your IOS Should Be Configured And can be Builded
License #
This project is licensed under the MIT License. Refer to the LICENSE file for details.
Contributing #
Contributions are welcome! Please refer to our contributing guidelines to get started.
Changelog #
For all notable changes to this project, refer to the CHANGELOG.
Support #
For any issues or suggestions, please open an issue. Your feedback is highly appreciated.
Author #
This project is created and maintained by Muhammad Azri Fatihah Susanto.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.