1

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.

James Z
  • 12,209
  • 10
  • 24
  • 44
Nns_ninteyFIve
  • 439
  • 4
  • 12

1 Answers1

0

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"
monzim
  • 526
  • 2
  • 4
  • 13
  • actually i had used this plugin for generating icons and its successfully generated icons , but it doesn't show it on android device. – Nns_ninteyFIve Sep 29 '22 at 04:12