我有推送插件 https://github.com/phonegap-build/PushPlugin.git 配置了cordova 3.5.当应用程序位于前台时,将调用通知插件回调,并且一切都按预期工作. 当应用程序处于非活动状态(在后台)时,会收到通
配置了cordova 3.5.当应用程序位于前台时,将调用通知插件回调,并且一切都按预期工作.
当应用程序处于非活动状态(在后台)时,会收到通知,我可以在通知栏中看到它们,但不会调用回调函数.我的代码基于push插件中给出的示例.下面是我简化的代码重现问题,
initialize : function () { console.info('NOTIFY Ready to register for push notification.'); var pushNotification = window.plugins.pushNotification; // Register device with push server pushNotification.register(gcmSuccessHandler, gcmErrorHandler, { 'senderID': GCM_SENDER_ID, 'ecb': 'onNotificationGCM' }); } window.onNotificationGCM = function(notification){ //the beep is invoked 3 times only when the app is in foreground navigator.notification.beep(3); console.log('EVENT -> RECEIVED:' + notification.event + ''); }
我已经在这个问题上突破了一天多了.任何帮助表示赞赏.
更新:
我终于找到了问题所在.我必须清除dalvik缓存并重新启动手机.到目前为止两次发生在我身上.似乎在android,https://github.com/phonegap-build/PushPlugin/issues/35中已知问题.