Skip to content

Commit 52076a5

Browse files
committed
Downgrade Kotlin to 2.2.20 as in jb-main
1 parent 7dfdd5d commit 52076a5

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

compose/mpp/demo/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ kotlin {
6666
"name" to "google-chrome",
6767
)
6868
)
69-
static(rootDirPath)
70-
static(projectDirPath)
69+
static = (static ?: mutableListOf()).apply {
70+
// Serve sources to debug inside browser
71+
add(rootDirPath)
72+
add(projectDirPath)
73+
}
7174
}
7275
}
7376
}

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ builder = "8.6.0-alpha05"
3333
byteBuddy = "1.14.9"
3434
asm = "9.7"
3535
cmake = "3.22.1"
36-
composeCompilerPlugin = "2.2.21"
36+
composeCompilerPlugin = "2.2.20"
3737
dagger = "2.57.1"
3838
datetime = "0.7.1"
3939
dependencyAnalysisGradlePlugin = "2.11.0"
@@ -53,17 +53,17 @@ kotlin19 = "1.9.24"
5353
# Use the most up-to-date patch
5454
kotlin20 = "2.0.21"
5555
kotlin21 = "2.1.21"
56-
kotlin22 = "2.2.21"
57-
kotlin = "2.2.21"
56+
kotlin22 = "2.2.20"
57+
kotlin = "2.2.20"
5858
kotlinBenchmark = "0.4.14"
59-
kotlinGradlePluginAnnotations = "2.2.21"
60-
kotlinGradlePluginApi = "2.2.21"
59+
kotlinGradlePluginAnnotations = "2.2.20"
60+
kotlinGradlePluginApi = "2.2.20"
6161
kotlinCompileTesting = "1.4.9"
6262
kotlinCoroutines = "1.9.0"
63-
kotlinNativeUtils = "2.2.21"
63+
kotlinNativeUtils = "2.2.20"
6464
kotlinSerialization = "1.8.0"
65-
kotlinToolingCore = "2.2.21"
66-
ksp = "2.2.21-2.0.4"
65+
kotlinToolingCore = "2.2.20"
66+
ksp = "2.2.20-2.0.4"
6767
ktfmt = "0.54"
6868
# Version format is: 1.KOTLIN_MAJOR_VERSION.0.KTFMT_VERSION
6969
# When updated, the id and checksum in StudioTask needs to be updated too

0 commit comments

Comments
 (0)