Skip to content

Commit f770f29

Browse files
committed
Fix compose in android sample
1 parent 5310de8 commit f770f29

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

samples/ktor-android-app/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ android {
5454
compose = true
5555
}
5656
composeOptions {
57-
kotlinCompilerExtensionVersion = "1.5.9"
57+
kotlinCompilerExtensionVersion = libs.versions.compose.plugin.get()
5858
}
5959
packaging {
6060
resources {

samples/ktor-android-app/gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ androidx-appcompat = "1.6.1"
66
androidx-constraintlayout = "2.1.4"
77
androidx-core-ktx = "1.12.0"
88
androidx-test-junit = "1.1.5"
9-
compose = "1.6.11"
9+
compose = "1.6.8"
10+
compose-plugin = "1.5.14" # https://mvnrepository.com/artifact/androidx.compose.compiler/compiler
1011
material3 = "1.2.0"
1112
junit = "4.13.2"
1213
ktor = "2.3.11"

0 commit comments

Comments
 (0)