Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- coroutine
- Android
- 유튜브
- 안스
- 안드로이드스튜디오
- studio
- WebView
- 코루틴
- 웹뷰
- Github
- 코틀린
- 의존성주입
- 스튜디오
- build
- viewpager
- dart
- Gradle
- MVVM
- 레트로핏
- 안드로이드 스튜디오
- error
- image
- 에러
- 깃헙
- RecyclerView
- Kotlin
- Retrofit
- ADB
- 안드로이드
- GIT
Archives
- Today
- Total
코딩하는 일용직 노동자
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() 로 설정 하라.
오류가 없어질 것이다.
'안드로이드' 카테고리의 다른 글
최근사용앱 화면에서 앱화면 가리기. (0) | 2020.04.29 |
---|---|
CLEARTEXT communication to XXXX not permitted by network security policy 에러처리. (0) | 2020.04.29 |
BootstrapMethodError 해결. (0) | 2020.04.29 |
파일공유시 FileProvider 이용하기. (5) | 2020.04.29 |
JVM target 오류 수정. (0) | 2020.04.29 |