Nicolas Demoisson
06/14/2021, 12:33 PMmbonnin
06/14/2021, 12:36 PMNicolas Demoisson
06/14/2021, 12:38 PMmbonnin
06/14/2021, 12:40 PMmacosX64 {
binaries {
framework {
export(project(":core"))
}
}
}
Nicolas Demoisson
06/14/2021, 12:43 PMmbonnin
06/14/2021, 12:53 PMmacosX64() {
binaries {
(get(project.name) as org.jetbrains.kotlin.gradle.plugin.mpp.Framework).export(project("core"))
}
}
Nicolas Demoisson
06/14/2021, 1:08 PMbinaries {
getFramework("DEBUG").export("com.myLib.core:Core:1.0.0")
getFramework("RELEASE").export("com.myLib.core:Core:1.0.0")
}
this does not throw error, but it’s not working eitherrusshwolf
06/14/2021, 1:43 PMtransitiveExport = true
to pick up declarations in the platform-specific sources and not just in commonNicolas Demoisson
06/14/2021, 3:53 PM