[Android/안드로이드] android.content.ReceiverCallNotAllowedException

2015. 1. 8. 11:47Programing/Debugging

[Issue]

Caused by: android.content.ReceiverCallNotAllowedException: 


BroadcastReceiver components are not allowed to register to receive intents

IntentReceiver components are not allowed to register to receive intents

[Soultion]
Kor : 넘겨주는 context의 값을 context.getApplicationContext() 로 설정 하라.

Eng : public void onReceive(Context context, Intent intent) {
mContext = context.getApplicationContext();