Skip to content

Commit

Permalink
Merge pull request #31 from voximplant/voximplant-sdk-2.41.0
Browse files Browse the repository at this point in the history
Voximplant SDK 2.41.0
  • Loading branch information
jedi1150 authored Dec 18, 2024
2 parents 74bf958 + eb2185c commit 9738f72
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion audiocall/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
targetSdk 33
multiDexEnabled true
versionCode 1
versionName "1.6.1"
versionName "1.7.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
7 -> model.changeNode(Node.NODE_8)
8 -> model.changeNode(Node.NODE_9)
9 -> model.changeNode(Node.NODE_10)
10 -> model.changeNode(Node.NODE_11)
}
}

Expand All @@ -123,6 +124,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
Node.NODE_8 -> 7
Node.NODE_9 -> 8
Node.NODE_10 -> 9
Node.NODE_11 -> 10
null -> null
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
firebase_crashlytics_version = '2.9.9'
firebase_bom_version = '32.3.1'

voximplant_sdk_version = '2.40.1'
voximplant_sdk_version = '2.41.0'

material_version = '1.9.0'
appcompat_version = '1.6.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ class AuthService(
7L -> Node.NODE_8
8L -> Node.NODE_9
9L -> Node.NODE_10
10L -> Node.NODE_11
else -> null
}
private set(value) {
Expand All @@ -67,6 +68,7 @@ class AuthService(
Node.NODE_8 -> 7L
Node.NODE_9 -> 8L
Node.NODE_10 -> 9L
Node.NODE_11 -> 10L
null -> null
}.let { node ->
if (node != null) {
Expand Down
1 change: 1 addition & 0 deletions shared/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<item>Node 8</item>
<item>Node 9</item>
<item>Node 10</item>
<item>Node 11</item>
</string-array>

<string name="logging_in">Logging in…</string>
Expand Down
2 changes: 1 addition & 1 deletion videocall-deepar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ android {
targetSdk 33
multiDexEnabled true
versionCode 1
versionName "1.4.1"
versionName "1.5.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
7 -> model.changeNode(Node.NODE_8)
8 -> model.changeNode(Node.NODE_9)
9 -> model.changeNode(Node.NODE_10)
10 -> model.changeNode(Node.NODE_11)
}
}

Expand All @@ -125,6 +126,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
Node.NODE_8 -> 7
Node.NODE_9 -> 8
Node.NODE_10 -> 9
Node.NODE_11 -> 10
null -> null
}

Expand Down
2 changes: 1 addition & 1 deletion videocall/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
targetSdk 33
multiDexEnabled true
versionCode 1
versionName "1.4.1"
versionName "1.5.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
7 -> model.changeNode(Node.NODE_8)
8 -> model.changeNode(Node.NODE_9)
9 -> model.changeNode(Node.NODE_10)
10 -> model.changeNode(Node.NODE_11)
}
}

Expand All @@ -124,6 +125,7 @@ class LoginActivity : BaseActivity<LoginViewModel>(LoginViewModel::class.java) {
Node.NODE_8 -> 7
Node.NODE_9 -> 8
Node.NODE_10 -> 9
Node.NODE_11 -> 10
null -> null
}

Expand Down

0 comments on commit 9738f72

Please sign in to comment.