Is there a way to have a multiplatform project dep...
# multiplatform
b
Is there a way to have a multiplatform project depend on another and have both projects’ binaries be included in the same iOS app?
y
my current workaround is to create a wrapper module which imports all the modules and export them
Copy code
iosX64("ios) {
  binaries([DEBUG, RELEASE]) {
    export(project(":projectA"))
    export(project(":projectB")) 
}

commonMain {
  dependencies {
    implementation project(":projectA")
    implementation project(":projectB")
  }
}
b
Noted. Thanks!