gpt4 book ai didi

android - Firebase 云消息传递 : How to set the notification icon on android?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:38 24 4
gpt4 key购买 nike

我在 android studio 上设置通知图标时遇到问题。

我这样设置可绘制文件夹:

enter image description here

而且我还在我的 AndroidManifest.xml 文件中设置了默认图标:

  <meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@drawable/notification_icon" />

我在这里将图标字段设置为 notification_icon:https://developers.google.com/cloud-messaging/http-server-ref#downstream-http-messages-json (p.s. 我知道那是 GCM,但它有效。我收到了除图标之外的所有内容的通知)

我错过了什么?我所看到的只是灰色圆圈内的白色方 block 。

这是我的后端代码:Pushex.push(%{title: user.name, body: "message goes here", badge: 1, sound: "default", icon: "notification_icon"}, to : user.fcm_token, 使用: :gcm) ( https://github.com/tuvistavie/pushex )

最佳答案

修复它...这太愚蠢了。受到这个答案的启发: https://stackoverflow.com/a/28387744/1555312

我将我的通知图标设为我的应用程序图标:

<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/ic_launcher" />

然后是android/app/build.gradle中的魔法线...

defaultConfig {
targetSdkVersion 20 // this has to be < 21
...
}

希望我能挽救别人的生命

关于android - Firebase 云消息传递 : How to set the notification icon on android?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44845797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com