Does anyone have the issue where `com.android.kotl...
# multiplatform
t
Does anyone have the issue where
com.android.kotlin.multiplatform.library
does not support custom group in
applyDefaultHierarchyTemplate
? more in thread.
I've create a group like this:
Copy code
applyDefaultHierarchyTemplate {
    common {
        group("androidJvm") {
            withAndroidTarget()
            withJvm()
        }
    }
}
when using
com.android.kotlin.multiplatform.library
, the
androidMain
source set still depends on
commonMain
, after switching to the old
com.android.library
, the
androidMain
source set will depends on
androidJvmMain
.
t
please open a Kotlin issue for this problem
t