Keep SRTP as default media encryption for now, update active call notification channel importance from default to low

This commit is contained in:
Sylvain Berfini 2025-03-11 10:12:39 +01:00
parent 82e341ea8c
commit dca10c9b2a
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@
<entry name="protocols" overwrite="true">stun,ice</entry>
</section>
<section name="sip">
<entry name="media_encryption" overwrite="true">zrtp</entry>
<entry name="media_encryption" overwrite="true">srtp</entry>
<entry name="media_encryption_mandatory">1</entry>
</section>
</config>

View file

@ -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
}