我正在使用新的谷歌云消息
(GoogleCloudMessaging gcm =
GoogleCloudMessaging.getInstance (context);)
我正在关注这个例子,它非常好并且完美地工作:
https://github.com/commonsguy/cw-omnibus/tree/master/Push/GCMClient2
使用此示例,我可以在 GCM 中注册,但我尝试取消注册失败。
在文档中表明您应该使用以下意图:
com.google.android.c2dm.intent.UNREGISTER
并按如下方式使用它:
Intent unregIntent = new Intent ("com.google.android.c2dm.intent.UNREGISTER");
unregIntent.putExtra ("app", PendingIntent.getBroadcast (this, 0, new Intent (), 0));
StartService (unregIntent);
不工作...
正如我所说,注册工作正常,但不知道如何取消注册。
我要做的不仅仅是意图吗?我究竟做错了什么?
我很感激任何帮助
谢谢并恭祝安康