Flutter Android application icon when app is minimized

Viewed 833

I've been trying to find a way to change that icon by many ways but that didn't work - I still get this white android on the blue background.

I tried:

  • using Android Assets Studio where I configured all assets (app icon and everything else looks good except that minimized icon)
  • changing AndroidManifest.xml icon and round icons
  • using flutter_launcher_icons plugin

And everything is without luck. How can I manually change that specific minimized icon? minimized app icon

Android Assets Studio

android xml file

resources

3 Answers

Apparently, this is only an issue when working in the debugging mode on an emulator. I've tried the same application on the physical mobile device and it had the correct image up there. Perhaps, it's a Flutter bug.

that is regular ic_launcher.png the one under "round" that is selected in picture above.

When using flutter_launcher_icons package, try giving your new icon set a new config name like 'new_launch' and providing image_path and adaptive_icon_background for android.

Running flutter pub run flutter_launcher_icons:main in terminal got my icon in the minimized screen as well.

Here's an example

Related