我在我的應用中實現了GCM,並且我使用GSMRegistrar作爲建議here。不,我得到一個錯誤的logcatGoogle Cloud Messaging中的泄漏IntentReceiver
7-02 23:35:15.830: E/ActivityThread(10442): Activity com.abc.xyz.mnp has leaked IntentReceiver [email protected] that was originally registered here. Are you missing a call to unregisterReceiver()?
我可以從這個理解是什麼,看着爲GSMRegistrar
代碼是我需要調用GSMRegistrar.onDestroy(this)
但我不明白的地方我應該怎麼稱呼呢?調用onDestroy()
活動mnp
導致它停止重試GSM Registartion
謝謝。它有助於。 例如: 它是這樣的:GCMIntentService.register(getApplicationContext()); 而不是像這樣:GCMIntentService.register(RegisterActivity.this); –