How To Change The Project Name In Flutter Android App

admin_img Posted By Bajarangi soft , Posted On 29-10-2020

I have created a project in Flutter. I have given a random name when I created the App. Now I want to change the project name.

How To Change The Project Name In Flutter Android App

 Change The Project Name
  - If you want to change the name of the app which is displayed on the menu of the mobile phone together with the app icon, you have to change the android: label in the android/app/src/main/AndroidManifest.xml file.In this file, you can find the below code.

<application
    android:name="io.flutter.app.FlutterApplication"
    android:label="intrinsic_width"
    android:icon="@mipmap/ic_launcher">

Then, Replace the new name and restart your app. It will work.

Related Post