android.content.ReceiverCallNotAllowedException: IntentReceiver components are not allowed to register to receive intents
기억 안나는 오류... 리시버에서 activity 실행할경우 새로운 태스크로 실행해야 하는 모양인데 뭐 여튼...
Activity context requires the FLAG_ACTIVITY_NEW_TASK flag.
->intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 추가
android.content.ReceiverCallNotAllowedException: IntentReceiver components are not allowed to register to receive intents
->리시버 안에서 리시버 등록 불가능 OR 리시버의 매개변수 context를 바로 사용하지 않고
context.getApplicationContext()를 이용한다.
댓글
댓글 쓰기