Skip to content

Commit

Permalink
Fix benchmark and ksp
Browse files Browse the repository at this point in the history
  • Loading branch information
riggaroo committed Nov 24, 2023
1 parent 7d8c1ac commit a0c1165
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Crane/benchmark/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

android {
namespace = "androidx.compose.samples.crane.benchmark"
compileSdk = 33
compileSdk = libs.versions.compileSdk.get().toInt()

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -18,7 +18,7 @@ android {

defaultConfig {
minSdk = 23
targetSdk = 33
targetSdk = libs.versions.targetSdk.get().toInt()

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion Crane/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion JetLagged/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion JetNews/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Jetcaster/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Jetchat/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Jetsnack/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Jetsurvey/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Owl/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion Reply/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down
2 changes: 1 addition & 1 deletion scripts/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ junit = "4.13.2"
# @pin Update in conjuction with Compose Compiler
kotlin = "1.9.20"
kotlinx_immutable = "0.3.5"
ksp = "1.8.0-1.0.9"
ksp = "1.8.10-1.0.9"
maps-compose = "3.1.1"
material = "1.10.0"
# @keep
Expand Down

0 comments on commit a0c1165

Please sign in to comment.