My guess is that because I’m using `.kts` Gradle f...
# gradle
m
My guess is that because I’m using
.kts
Gradle files Android Studio doesn’t import all settings properly and I cannot access the module settings to change the version manually.
o
Typically I prefer to set it directly on the
KotlinCompile
tasks:
Copy code
tasks.withType<KotlinCompile> {
    kotlinOptions {
        jvmTarget = "1.8"
    }
}
This seem to work with IntelliJ, so I presume AS would pick it up as well