FCM抬头通知

FCM heads up notification

所有论坛都试过了,还是不行。注意通知不起作用。

尝试了最高优先级和高优先级以及振动全屏内容,但没有任何效果。使用 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());

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