Android에서 서비스를 foreground로 변경할 때 발생하는 "invalid channel for service notification" 에러 해결 방법입니다.
startForeground()
는 인자로 노티피케이션을 받는데요, 안드로이드 O부터 노티피케이션을 등록할 때 노티피케이션의 Channel Id를 먼저 등록해야 합니다.
만약 등록되지 않은 Channel Id로 노티피케이션을 등록하려고 하면, 아래와 같이 invalid channel for service notification
에러가 발생합니다.
07-20 18:21:11.462 4055 4055 E AndroidRuntime: Process: com.codechacha.sample, PID: 4055
07-20 18:21:11.462 4055 4055 E AndroidRuntime: android.app.RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notification: Notification(channel=com.codechacha.sample pri=1 contentView=null vibrate=null sound=null defaults=0x0 flags=0xc0 color=0x00000000 category=call vis=PRIVATE)
07-20 18:21:11.462 4055 4055 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1945)
07-20 18:21:11.462 4055 4055 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:107)
채널 등록 및 startForeground
따라서 타겟 SDK가 안드로이드 O(API 26)라면 노티피케이션을 등록하기 전에 채널을 만들어야 합니다. 아래 코드는 노티피케이션 채널을 등록하는 코드입니다.
val channelId = "com.codechacha.sample1"
val channelName = "My service channel"
if (Build.VERSION.SDK_INT >= 26) {
val channel = NotificationChannel(
channelId, channelName,
NotificationManager.IMPORTANCE_DEFAULT
)
var manager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
manager.createNotificationChannel(channel)
}
그 이후 노티피케이션을 생성하여 startForeground()
를 호출하면 됩니다.
val notificationBuilder = NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("title")
.setContentText("content text")
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setCategory(NotificationCompat.CATEGORY_CALL)
.setFullScreenIntent(fullScreenPendingIntent, true)
val notification = notificationBuilder.build()
val NOTIFICATION_ID = 12345
startForeground(NOTIFICATION_ID, notification)
권한
startForeground()
는 다음 권한을 필요로 합니다.
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
권한이 없다면 다음과 같은 에러가 발생합니다.
07-20 18:33:13.952 4356 4356 E AndroidRuntime: java.lang.RuntimeException: Unable to create service com.codechacha.sample.MyService: java.lang.SecurityException: Permission Denial: startForeground from pid=4356, uid=10130 requires android.permission.FOREGROUND_SERVICE
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.ActivityThread.handleCreateService(ActivityThread.java:3963)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.ActivityThread.access$1500(ActivityThread.java:219)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1875)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:107)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.os.Looper.loop(Looper.java:214)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:7343)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:933)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: Caused by: java.lang.SecurityException: Permission Denial: startForeground from pid=4356, uid=10130 requires android.permission.FOREGROUND_SERVICE
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.os.Parcel.createException(Parcel.java:2071)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:2039)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.os.Parcel.readException(Parcel.java:1987)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.IActivityManager$Stub$Proxy.setServiceForeground(IActivityManager.java:6136)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.Service.startForeground(Service.java:707)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at com.codechacha.sample.MyService.onCreate(MyService.kt:55)
07-20 18:33:13.952 4356 4356 E AndroidRuntime: at android.app.ActivityThread.handleCreateService(ActivityThread.java:3951)
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력