Hi all, I’m making a KMP library that depends on n...
# multiplatform
p
Hi all, I’m making a KMP library that depends on native code, so I built
.framework
folders for each of those dependencies, but I would like to know how I can export those frameworks into the final XCFramework or cocoa Pod. I know there’s an
export(project(":dependency"))
in the tutorial, but I’m not sure it would work with an already compiled iOS framework. Is there a way to make the external framework folder a dependency to be exported along with kotlin KMP library? The current problem I have with my current approach, is that when importing the
KotlinMP.xcframework
in XCode in an iOS app, the simulator complains about the
rpath
for the sub-dependency not being in the DerivedData folder of the app.