Upgrade Kotlin 1.8.21 (#9495)

This commit is contained in:
Ivan Iskandar 2023-05-13 23:05:19 +07:00 committed by GitHub
parent bcd90be525
commit 8df9bce1b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
[versions]
compiler = "1.4.4"
compiler = "1.4.7"
compose-bom = "2023.04.00-alpha02"
accompanist = "0.31.2-alpha"

View File

@ -1,5 +1,5 @@
[versions]
kotlin_version = "1.8.10"
kotlin_version = "1.8.21"
serialization_version = "1.5.0"
xml_serialization_version = "0.85.0"

View File

@ -19,6 +19,10 @@ kotlin {
dependencies {
implementation(project(":core"))
api(libs.preferencektx)
// Workaround for https://youtrack.jetbrains.com/issue/KT-57605
implementation(kotlinx.coroutines.android)
implementation(project.dependencies.platform(kotlinx.coroutines.bom))
}
}
}