Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的应用程序中实现谷歌云消息传递,并被激怒添加这个 : GCMRegistrar.onDestroy(this);,否则给出异常。但我的困惑是,如果我GCMRegistrar.onDestroy(this);在onDestroy()活动中使用,GCMRegistrar如果由于某种原因发生错误,是否会重试。
GCMRegistrar.onDestroy(this);
onDestroy()
GCMRegistrar
答案在这里:
GCMRegistrar.onDestroy(context) 崩溃,接收器未注册
使用 getApplicationContext() 而不是这个(即活动的上下文)。为我工作。:D