FCM抬头通知



尝试了所有论坛,但仍然无法使其正常工作。抬头通知不起作用。

尝试了最大和高优先级并振动全屏内容,没有任何效果。使用Android-Moto 5.1版本。

notificationBuilder.setDefaults(Notification.DEFAULT_ALL);
notificationBuilder.setPriority(Notification.PRIORITY_HIGH);

最后,我找到了解决方案。在cordova-fcm插件MyFireBaseMessagingService中.java文件onMessageReceived方法-下面一行被注释(发送通知(。

sendNotification(remoteMessage.getNotification().getTitle(), remoteMessage.getNotification().getBody(), remoteMessage.getData());

希望它对某人有所帮助。我取消了这一行的注释,并添加了它工作正常的优先级。

相关内容

  • 没有找到相关文章

最新更新