is it normal to have accessor in Gradle only for `...
# multiplatform
e
is it normal to have accessor in Gradle only for
commonMain
but nothing for
jvmMain
or
nativeMain
?
Copy code
kotlin.sourceSets {
    commonMain { .. }
    named("jvmMain") { .. }
}
j
yes