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
34 changes: 16 additions & 18 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,15 @@ targetSdk = "34"
sampleTargetSdk = "35"
minSdk = "21"
allureKotlin = "2.4.0"
androidGradlePlugin = "8.8.0"
androidGradlePlugin = "8.10.1"
androidJunit5GradlePlugin = "1.11.2.0"
androidLegacySupport = "1.0.0"
androidxActivityCompose = "1.9.3"
androidxActivityKtx = "1.9.3"
androidxAnnotations = "1.9.1"
androidxAppcompat = "1.7.0"
androidxCompose = "1.9.0"
androidxComposeMaterialIcons = "1.7.8"
androidxComposeBom = "2025.08.01"
androidxComposeConstraintLayout = "1.1.0"
androidxComposeMaterial3 = "1.3.1"
androidxComposeMaterial3Adaptive = "1.0.0"
androidxCoreTest = "2.2.0"
androidxFragment = "1.8.5"
androidxKtx = "1.15.0"
Expand Down Expand Up @@ -56,9 +53,9 @@ junit5 = "5.11.3"
keyboardVisibilityEvent = "2.3.0"
kluent = "1.73"
kotest = "5.9.1"
kotlin = "2.0.21"
kotlin = "2.2.0"
kotlinBinaryValidator = "0.16.3"
ksp = "2.0.21-1.0.28"
ksp = "2.2.0-2.0.2"
leakCanary = "2.4"
macroBenchmark = "1.2.3"
markwon = "4.6.2"
Expand All @@ -74,7 +71,7 @@ photoview = "1.0.2"
reorderable = "2.4.0"
retrofit = "2.11.0"
robolectric = "4.10.3"
room = "2.6.1"
room = "2.7.2"
shimmer = "0.5.0"
shimmerCompose = "1.3.1"
shot = "6.1.0"
Expand All @@ -100,17 +97,18 @@ androidx-activity-ktx = { module = "androidx.activity:activity-ktx", version.ref
androidx-annotation = { module = "androidx.annotation:annotation", version.ref = "androidxAnnotations"}
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidxAppcompat"}
androidx-benchmark-macro-junit4 = { module = "androidx.benchmark:benchmark-macro-junit4", version.ref = "macroBenchmark"}
androidx-compose-bom = { module = "androidx.compose:compose-bom", version.ref = "androidxComposeBom"}
androidx-compose-constraintlayout-compose = { module = "androidx.constraintlayout:constraintlayout-compose", version.ref = "androidxComposeConstraintLayout"}
androidx-compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "androidxCompose"}
androidx-compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "androidxComposeMaterial3"}
androidx-compose-material3-adaptive = { module = "androidx.compose.material3.adaptive:adaptive", version.ref = "androidxComposeMaterial3Adaptive"}
androidx-compose-material-icons-core = { module = "androidx.compose.material:material-icons-core", version.ref = "androidxComposeMaterialIcons"}
androidx-compose-material-icons-extended = { module = "androidx.compose.material:material-icons-extended", version.ref = "androidxComposeMaterialIcons"}
androidx-compose-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "androidxCompose"}
androidx-compose-ui = { module = "androidx.compose.ui:ui", version.ref = "androidxCompose"}
androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "androidxCompose"}
androidx-compose-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4", version.ref = "androidxCompose"}
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "androidxCompose"}
androidx-compose-foundation = { module = "androidx.compose.foundation:foundation" }
androidx-compose-material3 = { module = "androidx.compose.material3:material3" }
androidx-compose-material3-adaptive = { module = "androidx.compose.material3.adaptive:adaptive" }
androidx-compose-material-icons-core = { module = "androidx.compose.material:material-icons-core" }
androidx-compose-material-icons-extended = { module = "androidx.compose.material:material-icons-extended" }
androidx-compose-runtime = { module = "androidx.compose.runtime:runtime" }
androidx-compose-ui = { module = "androidx.compose.ui:ui" }
androidx-compose-ui-test-manifest = { module = "androidx.compose.ui:ui-test-manifest" }
androidx-compose-ui-test-junit4 = { module = "androidx.compose.ui:ui-test-junit4" }
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintLayout"}
androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "androidxKtx"}
androidx-core-testing = { module = "androidx.arch.core:core-testing", version.ref = "androidxCoreTest"}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
1 change: 1 addition & 0 deletions metrics/stream-chat-android-metrics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ afterEvaluate {
plugins.apply(composePlugin.pluginId)
android.buildFeatures.compose = true
val configurationName = "${flavorName}Implementation"
dependencies.add(configurationName, dependencies.platform(libs.androidx.compose.bom))
dependencies.add(configurationName, libs.androidx.compose.ui)
dependencies.add(configurationName, libs.androidx.compose.ui.tooling)
dependencies.add(configurationName, libs.androidx.compose.foundation)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package io.getstream.chat.android.client.test

import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.launch
import kotlinx.coroutines.test.TestScope
import kotlinx.coroutines.test.runTest
Expand All @@ -26,7 +25,6 @@ import kotlinx.coroutines.test.runTest
* Test interface that helps to synchronize test coroutine scope and test scope. Use only when [runTest] is not
* possible.
*/
@ExperimentalCoroutinesApi
public interface SynchronizedCoroutineTest {

/** Returns test scope. */
Expand Down
Loading
Loading