diff --git a/android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt b/android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt index cc24f0b0..b78abe29 100644 --- a/android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt +++ b/android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt @@ -150,7 +150,7 @@ class PlayerNotificationService : MediaBrowserServiceCompat() { @RequiresApi(Build.VERSION_CODES.O) private fun createNotificationChannel(channelId: String, channelName: String): String { val chan = NotificationChannel(channelId, - channelName, NotificationManager.IMPORTANCE_HIGH) + channelName, NotificationManager.IMPORTANCE_LOW) chan.lightColor = Color.DKGRAY chan.lockscreenVisibility = Notification.VISIBILITY_PUBLIC val service = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager