From 297b1b24204e0b7fc36da767dbe557164910aa07 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Fri, 19 Sep 2025 10:32:16 +0300 Subject: [PATCH] Increased incoming call notifucation priority to MAX --- app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt index 9471c754..119f8c54 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt @@ -910,7 +910,7 @@ class BaresipService: Service() { .setWhen(System.currentTimeMillis()) .setShowWhen(true) .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) - .setPriority(NotificationCompat.PRIORITY_HIGH) + .setPriority(NotificationCompat.PRIORITY_MAX) .setFullScreenIntent(pi, true) val answerIntent = Intent(applicationContext, MainActivity::class.java) .putExtra("action", "call answer")