revert: downgrade Kotlin to 1.8.21

"A what? 1.8.22 isn't compatible, but the version bump indicate that it's supposed to be bug fixes????"
This commit is contained in:
Pun Butrach
2023-07-07 23:14:27 +07:00
parent ecca991fd6
commit 36b05097fc
2 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp")
id("kotlin-parcelize")
kotlin("plugin.serialization") version "1.8.22"
kotlin("plugin.serialization") version "1.8.21"
id("com.mikepenz.aboutlibraries.plugin") version "10.8.0"
}
@ -31,8 +31,8 @@ android {
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
packaging {
@ -46,7 +46,7 @@ android {
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures.compose = true
@ -55,7 +55,7 @@ android {
}
kotlin {
jvmToolchain(11)
jvmToolchain(17)
}
dependencies {