enter image description here

can't change flutter app launcher icon. it loads default android icon from integrated android library. when I try to delete ic_launcher.xml file from the path it deletes, but when I try to reopen the project it recreates the same ic_launcher.xml, and blocking my ic_launcher.png(icon) file in manifest.

1

There are 1 best solutions below

1
On

You can use this plugin for changing app icon. flutter_launcher_icons

dev_dependencies:
  flutter_launcher_icons: "^0.9.2"

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