Skip to content

Commit

Permalink
Upgrade WebRTC SDK: Android 114.5735.10, iOS 114.5735.09 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
shepeliev authored Apr 21, 2024
1 parent 07060ae commit b0a76c0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ accompanist-permision = "0.34.0"
compose = "1.6.6"
kermit = "2.0.3"
kotlin-wrappers = "1.0.0-pre.732"
webrtc-sdk = "114.5735.02"
webrtc-android-sdk = "114.5735.10"
webrtc-ios-sdk = "114.5735.09"

#Android
minSdk = "21"
Expand All @@ -28,7 +29,7 @@ nexus = "1.3.0"
compose-plugin = "1.6.2"

[libraries]
webrtc-sdk = { module = "io.github.webrtc-sdk:android", version.ref = "webrtc-sdk" }
webrtc-sdk = { module = "io.github.webrtc-sdk:android", version.ref = "webrtc-android-sdk" }
kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlin-coroutines" }
kotlin-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlin-coroutines" }
androidx-coreKtx = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
Expand Down
2 changes: 1 addition & 1 deletion sample/composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kotlin {
ios.deploymentTarget = "13.0"

pod("WebRTC-SDK") {
version = "114.5735.02"
version = libs.versions.webrtc.ios.sdk.get()
moduleName = "WebRTC"
packageName = "WebRTC"
}
Expand Down
2 changes: 1 addition & 1 deletion sample/composeApp/composeApp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.vendored_frameworks = 'build/cocoapods/framework/composeApp.framework'
spec.libraries = 'c++'
spec.ios.deployment_target = '13.0'
spec.dependency 'WebRTC-SDK', '114.5735.02'
spec.dependency 'WebRTC-SDK', '114.5735.09'

if !Dir.exist?('build/cocoapods/framework/composeApp.framework') || Dir.empty?('build/cocoapods/framework/composeApp.framework')
raise "
Expand Down
4 changes: 2 additions & 2 deletions webrtc-kmp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ kotlin {
version = webRtcKmpVersion
summary = "WebRTC Kotlin Multiplatform SDK"
homepage = "https://github.com/shepeliev/webrtc-kmp"
ios.deploymentTarget = "10.0"
ios.deploymentTarget = "13.0"

pod("WebRTC-SDK") {
version = "114.5735.02"
version = libs.versions.webrtc.ios.sdk.get()
moduleName = "WebRTC"
packageName = "WebRTC"
}
Expand Down
4 changes: 2 additions & 2 deletions webrtc-kmp/webrtc_kmp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Pod::Spec.new do |spec|
spec.summary = 'WebRTC Kotlin Multiplatform SDK'
spec.vendored_frameworks = 'build/cocoapods/framework/webrtc_kmp.framework'
spec.libraries = 'c++'
spec.ios.deployment_target = '10.0'
spec.dependency 'WebRTC-SDK', '114.5735.02'
spec.ios.deployment_target = '13.0'
spec.dependency 'WebRTC-SDK', '114.5735.09'

if !Dir.exist?('build/cocoapods/framework/webrtc_kmp.framework') || Dir.empty?('build/cocoapods/framework/webrtc_kmp.framework')
raise "
Expand Down

0 comments on commit b0a76c0

Please sign in to comment.