Hello :wave:, Is it possible to create an iOS libr...
# multiplatform
j
Hello 👋, Is it possible to create an iOS library that has access to the UI and can be distributed using the Swift Package Manager, where the library has as a dependency another Swift Package library that was generated by Kotlin Multiplatform? If so, what is the best way to do this?
a
Hey! That looks kinda straightforward. You are able to create XCFramework from KMM project, so you can create an SPM packet out of it. Then it just a technical stuff to ship this library and use it inside your initial iOS/UI labrary.
j
Thank you for the response. I'm trying to use the KMM project library within the iOS/UI library, but when I try to build the iOS/UI library I get an error that I can't have a binaryTarget. Is there a way to fix this?