반응형
java.lang.IllegalArgumentException: Receiver not registered
https://stackoverflow.com/questions/6165070/receiver-not-registered-exception-error
/** mRetrieverClient 종료
*/
@Override
protected void onStop() {
super.onStop();
try {
this.unregisterReceiver(smsReceiver);
}catch (Exception e){
}
}
smsReceiver가 이미 unregister되었는데 이게 발동되면 Exception. (??)
try ~ catch로 묶어줌.
반응형
'Android > 에러해결' 카테고리의 다른 글
IAP결제 시 onProductPurchased가 첫번째 시도에 호출되지 않을 때 (0) | 2019.03.19 |
---|---|
Build.gradle(Project: ~) 가 없어진경우 (0) | 2019.01.30 |
Cannot resolve symbol default_web_client_id (0) | 2019.01.29 |
End of input at line 1 column 1 path $ (1) | 2019.01.28 |
[Android] Google Search등록 (0) | 2019.01.24 |