Shervin
06/22/2022, 8:18 PMshared
module as “api”, how ever I’m not able to access them from Xcode.
I am adding kotlin("multiplatform")
and also:
kotlin {
jvm()
iosX64()
ios()
}
to the target module which I want to have access from Xcode.
I can verify that the shared
module can be imported in Xcode, but not the modules that it depends on.
Any idea what might be the issue?
Thanks in advancemkrussel
06/22/2022, 8:57 PMexport
them in the framework. If you don't then only the symbols used in the public API of the shared module gets included.
binaries.framework("Shared") {
export(project(":dep1")
export(project(":dep2")
}
Shervin
06/23/2022, 6:07 AM