gpt4 book ai didi

android - Xamarin - Oreo (API 26) Firebase Cloud Messaging 后台通知未显示在通知抽屉中

转载 作者:行者123 更新时间:2023-11-30 00:17:05 24 4
gpt4 key购买 nike

我正在使用 Visual Studio + Xamarin 开发一个 Android 应用程序,并尝试在 Oreo (API 26) 上接收后台 Firebase 云消息通知。

问题
当我的应用程序处于后台时,通知不会显示在通知抽屉中(仅适用于 Android API 26 Oreo)。但是,当应用程序处于前台时,通知会起作用。

评论
FCM 通知适用于小于 26 的所有其他构建版本,包括后台和前台 FCM 消息(这些消息出现在通知抽屉中,我可以从后台状态启动我的应用程序,或者如果它处于前台状态,应用程序会打开正确的 Intent ) .


我的设置如下;

list

Target Android Version: Android 8.0 (API level 26)
Minimum Android Version: Android 4.1 (API level 16)

Android 构建工具

Android SDK Tools 26.1.1
Android SDK Platform-Tools 26.0.2
Android SDK Build Tools 26.0.2

Firebase 云消息传递负载

我正在使用 node.js firebase 库发送以下 FCM 负载:

var payload = {
notification: {
title: "My Title",
body: "My body"
},
data: {
type: 'A_CUSTOM_TYPE_VARIABLE'
}
};

Xamarin 应用程序输出错误
当我从我的服务器或通过 firebase 控制台发送 FCM 并且该应用程序在后台时,我可以看到该应用程序收到了 FCM,但在它到达我的代码之前出错了。应用程序输出面板中有一个事件输出,内容为:

[Notification] Use of stream types is deprecated for operations other than volume control
[Notification] See the documentation of setSound() for what to use instead with android.media.AudioAttributes to qualify your playback use case

开发人员选项警告 toast

Settings > System > Developer Options > Show notification channel warnings (turn on)  

我已经在开发人员选项中打开“显示通知 channel 警告”,现在我在广播和 FCM 消息时看到以下错误消息(当应用程序处于后台时):

Image showing developer warning message when sending FCM


相关 Stackoverflow 帖子
- Oreo API 26 notification not displaying - 解决方案只谈 关于你如何构建你的通知。但是,那 FirebaseMessageReceiever 或 MainActivity 甚至没有在我的 案例。
- Notifications fail to display in Oreo - 看起来有一个 支持库中的错误。

最佳答案

我知道这是旧的,但对于遇到问题的其他人,文档已经更新。从屏幕截图来看,您的通知 channel 为空。对于 Android 26+,您需要创建一个:

void CreateNotificationChannel()
{
if (Build.VERSION.SdkInt < BuildVersionCodes.O)
{
// Notification channels are new in API 26 (and not a part of the
// support library). There is no need to create a notification
// channel on older versions of Android.
return;
}

var channel = new NotificationChannel(MyFirebaseMessagingService.CHANNEL_ID,
"FCM Notifications",
NotificationImportance.Default)
{

Description = "Firebase Cloud Messages appear in this channel"
};

var notificationManager = (NotificationManager)GetSystemService(Android.Content.Context.NotificationService);
notificationManager.CreateNotificationChannel(channel);
}

https://learn.microsoft.com/en-us/xamarin/android/data-cloud/google-messaging/remote-notifications-with-fcm?tabs=vsmac#check-for-google-play-services-and-create-a-notification-channel

关于android - Xamarin - Oreo (API 26) Firebase Cloud Messaging 后台通知未显示在通知抽屉中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47073818/

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