phldavies
03/03/2020, 6:23 PMkotlin("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.Kris Wong
03/03/2020, 6:27 PMtasks.withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = "1.8"
}
phldavies
03/03/2020, 6:35 PM