单击FCM通知时,应用无法打开(从FCM面板发送)

时间:2019-03-19 12:53:21

标签: android firebase push-notification firebase-cloud-messaging firebase-notifications

嗨,我正在使用FCM在应用程序中进行推送通知。

图书馆:

implementation 'com.google.firebase:firebase-core:16.0.3'
implementation 'com.google.firebase:firebase-messaging:17.3.2'

当我从FCM面板发送通知时,在某些情况下,它无法在某些设备(Oneplus 6t,5t)上打开应用程序。

当我使用邮递员发送通知时有效(数据有效载荷)

1 个答案:

答案 0 :(得分:0)

您需要为通知设置待定意图,我可以看到您询问如何将待定意图添加到从fcm面板发送的通知中,您应该在FirebaseMessagingService中的OnMessageRecived中处理通知,如以下链接所示

https://github.com/firebase/quickstart-android/blob/4017aac2bdc591dc8b9702953702f09921a4e76d/messaging/app/src/main/java/com/google/firebase/quickstart/fcm/java/MyFirebaseMessagingService.java#L47-L90