mbonnin
11/30/2019, 10:23 AM//mpp-module-1/build.gradle
kotlin {
macosX64 {
binaries {
framework()
}
}
sourceSets {
val commonMain by getting {
dependencies {
api(project(":mpp-module-2"))
}
}
}
}
And it looks like the classes from mpp-module-2
are not exported in the .framework ? Is that expected ?mbonnin
11/30/2019, 2:22 PMmpp-module-1
apiyshrsmz
11/30/2019, 3:08 PMexport
binaries {
framework() {
export(project(":mpp-module-2"))
}
}
yshrsmz
11/30/2019, 3:09 PMmbonnin
11/30/2019, 3:12 PMmbonnin
11/30/2019, 3:22 PM