Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
Loading