0

Please help me how i can change notification icon.I'm using local_notification package for show notification. see the below images

enter image description here

enter image description here enter image description here

I have changed ic_launcher images for changing notification icon. what other things should I do?

Saad
  • 539
  • 2
  • 19

1 Answers1

0

Just change from

@mipmap/ic_launcher

to

ic_launcher

If that doesn't work, try disabling the minify features in build.gradle

buildTypes {
    release {
        signingConfig signingConfigs.release
        shrinkResources false
    }
}