BroadcastReceiver가 안됩니다ㅠㅠ
508
5 asked
BootReceiver의 용도가 전원을 껏다가 켜도 상단바에 알림이 뜨게끔 하는 용도라고 알고있는데 적용이 되지 않습니다 ㅠㅠ 로그는 저렇게 뜨네요 ㅠㅠ
개복치님 코드로도 실행이 안되는데 제 에뮬과 실기기가 이상한걸까요 ㅠㅠㅠㅠ????
<uses-permission android:name="android.permission.RECEIV<receiver
android:name=".receiver.BootReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>E_BOOT_COMPLETED"/>class BootReceiver : BroadcastReceiver() {
override fun onReceive(context: Context?, intent: Intent?) {
Timber.d("onReceive")
Timber.d(intent?.action)
if(intent?.action.equals("android.intent.action.BOOT_COMPLETED")){
val foreground = Intent(context, PriceForgroundService::class.java)
foreground.action = "START"
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
context?.startForegroundService(foreground)
}else{
context?.startService(foreground)
}
}
}
}
Answer 1
빌드가 안 돼요..
0
75
2
압축 폴더 파일이 비어있어요ㅠ
0
1178
2
bottom navigation view 색깔
0
111
1
[룸DB 관련 에러] can't open offline database '/data/data/ ...
0
287
3
강의명: 코인 선택화면 Adapater 세팅 (RecyclerView) 에서
0
190
3
6:50분 즈음부터 recycler view 재활용 관련 말이 나오는데
0
169
1
섹션 4 다 완성하고 실행시켜보니 NumberFormatEx이 뜨네요
0
290
2
Notification을 실행했을때
0
822
1
Database Inspector에서 db가 closed 일때
0
428
1
Fragment 에서 다른 Activity로는 Navigation을 사용하지 않나요??
0
255
1
notification 문의드립니다.
0
221
1
풀 소스 코드는 없나요!?
0
317
2
안드로이드버전에 따라 다른것이있을까요?
0
353
2
HTML 코드
0
237
1
15, 30, 45분 데이터 및 어댑터 오류
0
284
1
_ 사용하시는 이유가 있으실까요?
0
225
1
15, 30, 45 분 데이터가 쌓이지 않습니다.
0
337
1
SQL문 쓰실 때 글자 색깔이 다른데 어떤걸 사용하시는지 알 수 있을까요?
0
219
1
안드로이드13 알림 권한
0
575
1
인트로 화면 세팅에서 질문있습니다.
0
278
1
datastore 관련 질문있습니다.
0
384
1
typeconverter 오류 문의드립니다.
0
389
2
navigation 관련 질문 있습니다
0
328
2
Room 관련한 에러 질문 올려용
0
465
1

