Can KMP projects be packaged into standard .framew...
# multiplatform
z
Can KMP projects be packaged into standard .framework for ios? I have a kmp project need to build a .framework for other projects who not use kmp.
for now,KMP build into a .klib for ios , and i found xcode-frameworks/Debug/iphoneos17.0/ComposeApp.framework in my project, is it what i want?
j
there's a few more options here e.g. building XCFramework https://kotlinlang.org/docs/multiplatform-build-native-binaries.html
another option is to build Swift Package.....using for example likes of KMMBridge (https://github.com/touchlab/KMMBridge) or https://github.com/luca992/multiplatform-swiftpackage
z
thanks