From dca10c9b2a742c081278cb5dff932fd9fd69dfc0 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 11 Mar 2025 10:12:39 +0100 Subject: [PATCH] Keep SRTP as default media encryption for now, update active call notification channel importance from default to low --- app/src/main/assets/assistant_linphone_default_values | 2 +- .../java/org/linphone/notifications/NotificationsManager.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/assets/assistant_linphone_default_values b/app/src/main/assets/assistant_linphone_default_values index 06ebab856..eacc99247 100644 --- a/app/src/main/assets/assistant_linphone_default_values +++ b/app/src/main/assets/assistant_linphone_default_values @@ -29,7 +29,7 @@ stun,ice
- zrtp + srtp 1
diff --git a/app/src/main/java/org/linphone/notifications/NotificationsManager.kt b/app/src/main/java/org/linphone/notifications/NotificationsManager.kt index 3432bf952..e5012898b 100644 --- a/app/src/main/java/org/linphone/notifications/NotificationsManager.kt +++ b/app/src/main/java/org/linphone/notifications/NotificationsManager.kt @@ -1582,7 +1582,7 @@ class NotificationsManager val id = context.getString(R.string.notification_channel_call_id) val name = context.getString(R.string.notification_channel_call_name) - val channel = NotificationChannel(id, name, NotificationManager.IMPORTANCE_DEFAULT).apply { + val channel = NotificationChannel(id, name, NotificationManager.IMPORTANCE_LOW).apply { description = name lockscreenVisibility = Notification.VISIBILITY_PUBLIC }