hfhbd
06/18/2022, 8:15 AM1.8
instead.
plugins {
kotlin("android") version "1.7.0"
id("com.android.application") version "7.2.1"
}
android {
kotlinOptions {
jvmTarget = "1.8"
}
}
tasks {
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
println(kotlinOptions.jvmTarget) // prints null
}
}
hfhbd
06/18/2022, 8:42 AMChrimaeon
06/18/2022, 9:45 AMdoLast
{}
And run a compile task. Maybe the configuration phased changed in 1.7hfhbd
06/18/2022, 9:53 AMChrimaeon
06/18/2022, 10:02 AM