Hi, I wondered if anyone could help me out with Kotlin Multiplatform:
I have a multiplatform module that has common / android and ios implementations, with 1 pod dependency.
I can build this successfully, and produce a POD.
I then have a second multiplatform module that depends on the first one above. In gradle I can build with compile..IosX64KLibrary, and it generates fine.
However, when I try and build iOS app, it complains saying "_Module not found_", for the pod dependency in the second module. It fails on the cinterop task of the dependency module after calling (parent module).syncFramework from the kotlin build function. Is there any workaround for this error. Basically, I just want the kotlin multiplatform library, then implementation project(":childModule") in another multiplatform module, and be able to build the iOS app with a dependency just on the parent, and for it to pull in the child explictlly / just build it into the first one
Hope that makes sense, and can provide more information if needed!
Thanks