Skip to content

Commit

Permalink
Merge pull request #158 from 2rabs/dependabot/gradle/kotlin-1.9.22
Browse files Browse the repository at this point in the history
⬆️ Bump kotlin from 1.9.21 to 1.9.22
  • Loading branch information
tatsutakein authored Jan 3, 2024
2 parents 7d0357e + f47fc44 commit dd67966
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ class KmpComposePlugin : Plugin<Project> {
with(pluginManager) {
apply("org.jetbrains.compose")
}
val compose = extensions["compose"] as org.jetbrains.compose.ComposeExtension
val compose = (extensions["compose"] as org.jetbrains.compose.ComposeExtension).apply {
kotlinCompilerPlugin.set(libs.version("composeCompiler"))
}
kotlin {
with(sourceSets) {
getByName("commonMain").apply {
Expand Down
3 changes: 2 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ androidGradlePlugin = "8.2.0"
# For updating Kotlin and Compose Compiler version, see:
# https://github.com/JetBrains/compose-multiplatform/blob/master/VERSIONING.md#kotlin-compatibility
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin?#pre-release_kotlin_compatibility
kotlin = "1.9.21"
kotlin = "1.9.22"

androidDesugarJdkLibs = "2.0.3"
compose = "1.5.11"
composeCompiler = "1.5.7"
androidxActivity = "1.8.0"
androidxSplashScreen = "1.0.1"
kotlinxCoroutines = "1.7.3"
Expand Down

0 comments on commit dd67966

Please sign in to comment.