0

我创建了我的 GCM 项目,我设法注册和接收消息,但我仍然得到:

[DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent
{ act=com.google.android.c2dm.intent.RECEIVE cat=[com.redbend.client]
(has extras) }

在类似的问题中,我看到此错误是由于在清单中错误地注册接收器导致接收器获得取消注册意图而不是接收意图。我成功接收到消息,但在 logcat 中仍然出现此错误。有人有线索吗?

4

1 回答 1

0

最终问题是,在提交意图后,我没有提出:

setResult(Activity.RESULT_OK, null, null);

希望它会为其他人节省时间......

于 2012-09-09T14:15:21.497 回答