Flutter | Change App Name and Icon

Mohammed Waseem
Apr 11, 2023

--

App Name

Go to android > app > src > main > AndroidManifest.xml

In android:label👇(put new name)

android:label="<NEW-APP-NAME>"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">

Icon

Use the above package👆.

Create a new file in the project directory flutter_launcher_icons.yaml and enter the below in the file

flutter_icons:
# image_path: "assets/images/icon-128x128.png"
image_path_android: "<PATH-TO-IMAGE-ICON>"
android: true

Then run below in the command line👇

flutter pub run flutter_launcher_icons -f flutter_launcher_icons.yaml

Done!!

Now uninstall the app and re-run the app with a new name and logo.

--

--