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
No known key found for this signature in database
GPG Key ID: 2B0F94D832579862
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 {

View File

@ -1,5 +1,5 @@
plugins {
id("com.android.application") version "8.0.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
id("com.google.devtools.ksp") version "1.8.22-1.0.11" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
id("com.google.devtools.ksp") version "1.8.21-1.0.11" apply false
}