kotlinforandroid
12/22/2023, 12:17 PMkotlinCompile
. Is there a way to make it work with multiplatform in a generic name without me having to list all the possible names? Because it fails to find the task. On the JVM target it is compileKotlinJvm
for example.mbonnin
12/22/2023, 12:25 PMkotlin.targets.mapNotNull { it.compilations["main"]?.compileKotlinTaskName }
mbonnin
12/22/2023, 12:27 PM.class
and .klib
files?mbonnin
12/22/2023, 12:29 PMspand
12/22/2023, 12:30 PMtasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>>().configureEach {
...
}
It works for js, jvm, common etc.hfhbd
12/23/2023, 10:18 AM