BroadcastReceiver가 안됩니다ㅠㅠ
506
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
74
2
압축 폴더 파일이 비어있어요ㅠ
0
1163
2
bottom navigation view 색깔
0
108
1
[룸DB 관련 에러] can't open offline database '/data/data/ ...
0
283
3
강의명: 코인 선택화면 Adapater 세팅 (RecyclerView) 에서
0
186
3
6:50분 즈음부터 recycler view 재활용 관련 말이 나오는데
0
168
1
섹션 4 다 완성하고 실행시켜보니 NumberFormatEx이 뜨네요
0
288
2
Notification을 실행했을때
0
817
1
Database Inspector에서 db가 closed 일때
0
426
1
Fragment 에서 다른 Activity로는 Navigation을 사용하지 않나요??
0
253
1
notification 문의드립니다.
0
219
1
풀 소스 코드는 없나요!?
0
314
2
안드로이드버전에 따라 다른것이있을까요?
0
350
2
HTML 코드
0
235
1
15, 30, 45분 데이터 및 어댑터 오류
0
283
1
_ 사용하시는 이유가 있으실까요?
0
223
1
15, 30, 45 분 데이터가 쌓이지 않습니다.
0
334
1
SQL문 쓰실 때 글자 색깔이 다른데 어떤걸 사용하시는지 알 수 있을까요?
0
217
1
안드로이드13 알림 권한
0
573
1
인트로 화면 세팅에서 질문있습니다.
0
277
1
datastore 관련 질문있습니다.
0
383
1
typeconverter 오류 문의드립니다.
0
385
2
navigation 관련 질문 있습니다
0
326
2
Room 관련한 에러 질문 올려용
0
462
1

