我正在使用Pushwoosh库,我有自己的BroadcastReceiver
来处理推送通知。
我已经更新了 Pushwoosh 库,现在我得到了两次我的 notifiction,它们甚至看起来不一样.
原因是我正在用我的类处理我的推送,而 pushwoose 也用 there-class 处理通知:
public class GCMListenerService 扩展 GcmListenerService { private static final String TAG = GCMListenerService.class.getName();
public GCMListenerService() {
}
public void onMessageReceived(String from, Bundle data) {
Log.info(TAG, "Received message: " + (data != null?data.toString():"<null>") + " from: " + from);
try {
PushServiceHelper.generateNotification(this.getApplicationContext(), data);
} catch (Exception var4) {
Log.exception(var4);
}
}
}
如何防止 Pushwoosh 处理通知?
尝试使用 Factory(扩展 AbsNotificationFactory )而不是自定义 BroadcastReceiver。
就像这里的指南一样:
http://docs.pushwoosh.com/docs/android-faq#customizing-push-notifications