在主题订阅推送通知时,ionic2 app无响应

时间:2016-11-15 08:24:18

标签: push-notification ionic2

我使用ionic2来实现推送通知。(documentation

使用设备注册ID,我能够收到通知。但如果我订阅任何主题,加载应用程序时应用程序崩溃(真实硬件上的应用程序错误:不幸的是,推送应用程序已停止,android 5 +)

尝试使用chrome控制台检查问题:但不是错误或异常 (铬://检查/#设备)

基于以下帖子完成了实施:

https://firebase.google.com/

platform.ready().then(() => {
--
--
let pushObj = Push.init({
        android: {
          senderID: "343415024673",
          sound: true,
          vibrate: true,     
          clearNotifications: true,
          topics: ['/topics/global']
        },
        ios: {
          alert: "true",
          badge: true,
          sound: 'true'
        },
        windows: {}
      });
});

提前致谢

0 个答案:

没有答案