Home > Software design >  Flutter Launcher icon doesn't change the icon
Flutter Launcher icon doesn't change the icon

Time:10-01

sample code

I already type this to my terminal and the icon for my app didn't change

flutter pub get

flutter pub run flutter_launcher_icons:main

CodePudding user response:

Make sure you've set the app icon path in android/app/src/main/AndroidManifest.xml

 android:icon="@mipmap/icon" 

CodePudding user response:

Try below code hope its help to you.

Add below package in your pubspec.yaml file

flutter_launcher_icons: ^0.9.2

flutter_icons: image_path: "assets/icon.png" android: true ios: true

then run below command

flutter pub run flutter_launcher_icons:main
  • Related