如果应用程序在前台运行,则不会调用Android Push事件处理程序

时间:2015-12-02 17:00:26

标签: android cordova push-notification cordova-plugins phonegap-pushplugin

我正在使用https://github.com/phonegap/phonegap-plugin-push/进行推送通知。

pushRegistry = window.PushNotification.init({
      android: {
          'senderID': 'appId'
      },
      ios: {
          alert: 'true',      
          badge: 'false',     
          sound: 'true'       
      }
});
pushRegistry.on('notification', function(data){
    console.log(data);
}); 

现在,在收到通知并关闭应用程序时,会调用上面的事件处理程序。但是,如果应用程序正在运行,则不会调用它。我正在使用Chrome Device Debugger来检查是否调用了事件处理程序。我将不胜感激任何帮助。

0 个答案:

没有答案