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

react native app instantly crashes when adding senderID to react-native-push-notification configure

在没有 senderID 的情况下调用 PushNotification.configure() 时,react-native-push-notification 工作正常 但是,在添加它时,应用程序关闭且没有日志。

平台:android(真实设备)

react-native-push-notification: ^3.0.2

本机反应:0.49.3

我试了try catch和哨兵,都没有发现错误

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

所以我刚刚在 app/build.gradle

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