mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Added back largeHeap in Manifest XML file
This commit is contained in:
parent
3ffda24b82
commit
bf4b5a51f5
2 changed files with 4 additions and 3 deletions
|
|
@ -54,6 +54,7 @@
|
|||
android:localeConfig="@xml/locales_config"
|
||||
android:theme="@style/Theme.Linphone"
|
||||
android:appCategory="social"
|
||||
android:largeHeap="true"
|
||||
tools:targetApi="35">
|
||||
|
||||
<!-- Required for chat message & call notifications to be displayed in Android auto -->
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ class TelecomManager
|
|||
try {
|
||||
callsManager.registerAppWithTelecom(
|
||||
CallsManager.CAPABILITY_BASELINE or
|
||||
CallsManager.Companion.CAPABILITY_SUPPORTS_VIDEO_CALLING
|
||||
CallsManager.CAPABILITY_SUPPORTS_VIDEO_CALLING
|
||||
)
|
||||
Log.i("$TAG App has been registered with Telecom")
|
||||
} catch (e: Exception) {
|
||||
|
|
@ -112,9 +112,9 @@ class TelecomManager
|
|||
|
||||
val isVideo = LinphoneUtils.isVideoEnabled(call)
|
||||
val type = if (isVideo) {
|
||||
CallAttributesCompat.Companion.CALL_TYPE_VIDEO_CALL
|
||||
CallAttributesCompat.CALL_TYPE_VIDEO_CALL
|
||||
} else {
|
||||
CallAttributesCompat.Companion.CALL_TYPE_AUDIO_CALL
|
||||
CallAttributesCompat.CALL_TYPE_AUDIO_CALL
|
||||
}
|
||||
|
||||
scope.launch {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue