Skip to content
Open
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
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[versions]
# Android SDK versions
compileSdk = "35"
targetSdk = "35"
compileSdk = "36"
targetSdk = "36"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
minSdk = "24"
paparazziCompileSdk = "35"

allureKotlin = "2.4.0"
androidGradlePlugin = "8.5.2"
androidGradlePlugin = "8.9.1"
cameraCamera2 = "1.3.4"
spotless = "6.21.0"
streamConventions = "0.14.0"
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.8-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 3 additions & 1 deletion stream-video-android-ui-compose/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ plugins {

android {
namespace = "io.getstream.video.android.compose"
compileSdk = libs.versions.compileSdk.get().toInt()
// Paparazzi 1.3.4's layoutlib cannot load Android 16 framework classes. Keep this module on
// API 35 until the project can move to Kotlin 2 and Paparazzi 2; other modules remain on API 36.
compileSdk = libs.versions.paparazziCompileSdk.get().toInt()

defaultConfig {
minSdk = libs.versions.minSdk.get().toInt()
Expand Down
Loading