我正在使用react-native-pusher-push-notifications在react native android app中获取通知 应用程序正确注册,当我从推杆仪表板发送通知时崩溃并关闭
我正在使用:
.isActive = false
答案 0 :(得分:0)
这不是答案,但可能会有所帮助。我发生了同样的事情,当我向设备(已注册)发送测试推送通知时,应用程序崩溃了,因此它接收到通知,但在此过程中崩溃了。
这里的主要区别是我没有使用react-native-pusher-push-notifications库。我做到了,就像Pusher告诉我要做的那样,例如在MainApplication.java中:
import com.pusher.pushnotifications.PushNotifications;
PushNotifications.start(getApplicationContext(), "xxxxxx-ccccc-4234-8ba8-cccsadadasdas");
PushNotifications.addDeviceInterest("hello");
因此,我认为这可能与库版本有关,但与您使用的软件包无关(顺便说一句,我还没有解决问题,我很想办法解决,您的问题就出现了。 )。
答案 1 :(得分:0)
已修复!
这是Firebase消息传递版本的问题,请参阅此文件,它已解决崩溃问题
https://github.com/b8ne/react-native-pusher-push-notifications/issues/41