[Calling] update to latest SDK

This commit is contained in:
iaulakh 2024-02-23 15:22:52 -08:00
Родитель 9f4f6cbf8a
Коммит cf2d0e7325
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -5,7 +5,7 @@ buildscript {
}
ext {
call_library_version_name = '1.7.0-alpha.3'
call_library_version_name = '1.6.0-beta.2.1'
chat_library_version_name = '1.0.0-beta.2'
ui_library_version_code = getVersionCode()
@ -35,7 +35,7 @@ buildscript {
azure_calling_sdk_version = privateDropProps.getProperty('PRIVATE_DROP_VERSION', '""')
}
else {
azure_calling_sdk_version = '2.7.0-beta.1.021224'
azure_calling_sdk_version = '2.7.0-beta.1.02232024'
}
// while modifying this version, make sure to modify in ChatContainer

Просмотреть файл

@ -91,7 +91,7 @@ publishing {
version "$azure_calling_sdk_version"
// Add the aar file as an artifact
artifact("/Users/inderpalsinghaulakh/Downloads/azure-communication-calling-2.7.0-beta.1.021224.aar")
artifact("/Users/inderpalsinghaulakh/Downloads/azure-communication-calling-2.7.0-beta.1.02232024.aar")
pom.withXml {
def dependenciesNode = asNode().appendNode('dependencies')

Просмотреть файл

@ -84,7 +84,7 @@ internal class CallingSDKCallAgentWrapper(private val logger: Logger) {
if (callAgentCompletableFuture == null || callAgentCompletableFuture!!.isCompletedExceptionally) {
callAgentCompletableFuture = CompletableFuture<CallAgent>()
val options = CallAgentOptions().apply { displayName = name }
options.setdisableInternalPushForIncomingCall(disableInternalPushForIncomingCall)
options.isDisableInternalPushForIncomingCall = disableInternalPushForIncomingCall
try {
setupCall()?.whenComplete { callClient, callAgentError ->
if (callAgentError != null) {