I have a multiplatform project A that uses another...
# multiplatform
m
I have a multiplatform project A that uses another multiplatform library B that I created. When I add the dependency, however, for some reason Gradle is not importing the common artifact from the library; it only pulls the JS and JVM artifacts. I have checked that the common artifact is indeed published to the repository I've done this with multiplatform projects in the past and never run into this issue. Does anyone else have insight on this?
I just figured this out if this is helpful to anyone else I had to remove the
kotlin.internal.mpp.hierarchicalStructureByDefault=false
line from my
gradle.properties
file.