Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

push notification - Notifee android notitication icon not working

Notifee Notification icon not working in the notifee display notification

notifee.displayNotification({
        title: remoteMessage.notification.title,
        body: remoteMessage.notification.body,
        android: {
          channelId: 'android_id',
        },
      });

I have used so many things like, small_icon,large_icon and other ways but notification icon is not diplaying it is just showing a default image.

I also checked with AndroidManifest meta data tags, they are also not working.

question from:https://stackoverflow.com/questions/65881443/notifee-android-notitication-icon-not-working

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try to use add smallIcon: 'name-of-a-small-icon' in your 'android' field such as :

notifee.displayNotification({
    title: remoteMessage.notification.title,
    body: remoteMessage.notification.body,
    android: {
      channelId: 'android_id',
      smallIcon: 'ic_launcher' // you can change the icon name
    },
  });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...