Is there a android api level vs java version map? ...
# android
u
Is there a android api level vs java version map? I see library beginning to bump to jvm target 11, I bumped my as well
Copy code
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { task ->
    task.kotlinOptions {
        jvmTarget = "11"
    }
}
and it seems to work no problem, so..what's the catch?¨'
😶 1