diff --git a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt index c6baf69f367..38c4ceaed13 100644 --- a/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt +++ b/buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt @@ -1,8 +1,8 @@ package io.getstream.video.android object Configuration { - const val compileSdk = 34 - const val targetSdk = 34 + const val compileSdk = 35 + const val targetSdk = 35 const val minSdk = 24 const val majorVersion = 1 const val minorVersion = 0 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a33164042cc..376e9182664 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,9 +3,9 @@ androidGradlePlugin = "8.4.2" cameraCamera2 = "1.3.4" spotless = "6.21.0" nexusPlugin = "1.3.0" -kotlin = "2.0.20" -ksp = "2.0.20-1.0.25" -kotlinSerialization = "1.7.1" +kotlin = "2.0.21" +ksp = "2.0.21-1.0.26" +kotlinSerialization = "1.7.3" kotlinSerializationConverter = "1.0.0" kotlinxCoroutines = "1.9.0" @@ -22,14 +22,14 @@ androidxActivity = "1.9.2" androidxDataStore = "1.1.1" googleService = "4.4.2" -androidxComposeBom = "2024.09.02" +androidxComposeBom = "2024.11.00" androidxComposeTracing = "1.0.0-beta01" androidxHiltNavigation = "1.2.0" -androidxComposeNavigation = "2.8.1" +androidxComposeNavigation = "2.8.4" composeStableMarker = "1.0.5" coil = "2.6.0" -landscapist = "2.3.6" +landscapist = "2.4.2" accompanist = "0.34.0" telephoto = "0.3.0" audioswitch = "1.2.0" @@ -72,7 +72,7 @@ installReferrer = "2.2" playAuth = "20.7.0" playAppUpdate = "2.1.0" -hilt = "2.51.1" +hilt = "2.52" leakCanary = "2.13" binaryCompatabilityValidator = "0.16.3" playPublisher = "3.8.4" diff --git a/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt b/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt index 79f1443ab03..50204acf758 100644 --- a/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt +++ b/stream-video-android-filters-video/src/main/kotlin/io/getstream/video/android/filters/video/VirtualBackgroundVideoFilter.kt @@ -106,7 +106,7 @@ public class VirtualBackgroundVideoFilter( // Make a copy of the scaled virtual background bitmap. Used when processing each frame. scaledVirtualBackgroundBitmapCopy = scaledVirtualBackgroundBitmap!!.copy( /* config = */ - scaledVirtualBackgroundBitmap!!.config, + scaledVirtualBackgroundBitmap!!.config!!, /* isMutable = */ true, )