gpt4 book ai didi

android - Firebase 消息传递 : default notification channel doesn't work

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

当我在 Android Oreo 上没有指定 channel 的情况下从 Firebase 控制台发送通知时,它必须使用“杂项” channel 如果提供了来自 Android list 的默认 channel 。所以我在我的应用程序中创建并提供了默认 channel :

// Application onCreate
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val manager = getSystemService(Context.NOTIFICATION_SERVICE)
as NotificationManager
val channelId = getString(R.string.notification_channel_id)
if(manager.getNotificationChannel(channelId)==null) {
val channel = NotificationChannel(channelId,
getString(R.string.notification_channel_name),
NotificationManager.IMPORTANCE_DEFAULT)
channel.description =
getString(R.string.notification_channel_description)
manager.createNotificationChannel(channel)
}
}

// Manifest
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel"
android:value="@string/notification_channel_id" />

但它不起作用。通知始终使用“杂项” channel 。我在这里遗漏了什么还是 Firebase 错误?

最佳答案

抱歉,显然文档没有正确更新:(

list 中正确的元数据是:

<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/notification_channel_id" />

注意 android:name 属性值末尾的 _id

将尽快更新文档。

关于android - Firebase 消息传递 : default notification channel doesn't work,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45995337/

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