mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Keep SRTP as default media encryption for now, update active call notification channel importance from default to low
This commit is contained in:
parent
82e341ea8c
commit
dca10c9b2a
2 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue