将senderID添加到react-native-push-notification configure时,本机应用程序会立即崩溃

时间:2018-02-04 15:06:24

标签: android react-native push-notification react-native-push-notification

在没有PushNotification.configure()的情况下调用senderID时,

react-native-push-notification工作正常 但是,添加它时,应用程序将关闭,没有日志。

平台:android(真实设备)

react-native-push-notification:^ 3.0.2

react-native:0.49.3

我尝试try catch并尝试过哨兵,两人都没有发现错误

1 个答案:

答案 0 :(得分:1)

问题是我使用了不兼容的play-services-gcm版本。

所以我刚刚在force=true

中将force=false更改为app/build.gradle
compile ('com.google.android.gms:play-services-gcm:8.1.0') {
    force = false; <== Here
}