코딩하는 일용직 노동자

IntentReceiver components are not allowed to register to receive intents 본문

안드로이드

IntentReceiver components are not allowed to register to receive intents

bacass 2020. 4. 29. 17:41


IntentReceiver components are not allowed to register to receive intents


안드로이드 프로그래밍 시, 이와 같은 오류를 만날 가능성이 있다.
이유인즉, 리시버 안에 리시버를 등록 할 수 없다는 것이다.

해결책이 있다.

넘겨주는 context의 값을 context.getApplicationContext() 로 설정 하라.
오류가 없어질 것이다.