With gradle, when using `kotlin("multiplatform")` ...
# multiplatform
p
With gradle, when using
kotlin("multiplatform")
with
id("com.android.library")
, what's the best approach to configure the kotlin
jvmTarget
? I can't seem to use
kotlinOptions {}
in the
android{}
block.
k
Copy code
tasks.withType<KotlinCompile>().configureEach {
    kotlinOptions.jvmTarget = "1.8"
}
p
Thanks