我在应用中使用了 Firebase FCM,并在清单中设置了自己的通知图标:
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/ic_custom" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_color"
android:resource="@color/colorPrimary" />
在我测试过的奥利奥之前的每个Android(API 21,API 23(中,图标都会正确显示在推送通知视图中,作为一个大圆圈,背景colorPrimary
,里面有一个白色ic_custom
。
在Android 8.0中,图标显示为一个充满colorPrimary
的小圆圈,里面的任何图标。
我在这里错过了什么?
解决了将 FCM 依赖项更新为 com.google.firebase:firebase-messaging:15.0.2
的问题