PushNotification.configure()
的情况下调用senderID
时,react-native-push-notification工作正常 但是,添加它时,应用程序将关闭,没有日志。
平台:android(真实设备)
react-native-push-notification:^ 3.0.2
react-native:0.49.3
我尝试try catch
并尝试过哨兵,两人都没有发现错误
答案 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
}