2

I Tried changing my app's Icon on apk but it's not changing. I generated an icon on https://appicon.co/ and try changing but it's showing flutter's default app icon.

1 Answers1

2

Try this flutter_launcher_icons

In pubsec.yaml

 dev_dependencies:
  flutter_launcher_icons: "^0.9.2"

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

And then run this on your terminal

flutter pub run flutter_launcher_icons:main
Nabin Dhakal
  • 1,418
  • 2
  • 17
  • 39