Skip to content
Home ยป How to change App Name and App Id in Flutter

How to change App Name and App Id in Flutter

In this article , I will show how to change App Name and App Id in Flutter .

To change App Name and App Id we will use rename package .

Activate the package

To activate the package run the below command –

flutter pub global activate rename

How to get the App Name of a Flutter App

To get the App Name of a Flutter App run the below command

rename getAppName --targets ios,android

How to change the App Name of a Flutter App

To change the App Name of a Flutter App run the below command

rename setAppName --targets ios,android --value "YourAppName"

How to get the App Id of a Flutter App

To get the App Id of a Flutter App run the below command

rename getBundleId --targets ios,android

How to change the App Id of a Flutter App

To change the App Id of a Flutter App run the below command

rename setBundleId --targets ios,android --value "com.example.bundleId"

If you like this article , please like , comment and share the article . You can also buy me a coffee.

Leave a Reply

Your email address will not be published. Required fields are marked *