Upgrade Kotlin 1.8.21 (#9495)

(cherry picked from commit 8df9bce1b4ab2e38f1e1180093c51d7fe6ce4405)

# Conflicts:
#	gradle/kotlinx.versions.toml
This commit is contained in:
Ivan Iskandar 2023-05-13 23:05:19 +07:00 committed by Jobobby04
parent 37ddaa6dd7
commit beb62884d0
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"
# TODO: 1.4.1 introduces an issue with cached serializers; see https://github.com/Kotlin/kotlinx.serialization/issues/2065
# TODO: 1.5.0 introduces ExceptionInInitializerError crashes
serialization_version = "1.4.0"

View File

@ -24,6 +24,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))
}
}
}