Good morning, Where do I see the `shared` framewo...
# multiplatform
t
Good morning, Where do I see the
shared
framework from a KMM project in Xcode? It's neither listed under the
Frameworks
folder neither nor
Embedded Frameworks
in Xcode.
n
I don't think it's natively supported but you can try this....https://github.com/touchlab/xcode-kotlin
t
thanks
👍🏽 1
d
xcode-kotlin won’t help you with this. If you didn’t choose
Cocoapods
when you initialized the KMM project, you have to manually add the framework to your project. Once you’ve run
assembleXCFramework
, you should be able to drag (via Finder) the framework from the build directory to the project. Drop it under ‘Frameworks’. That should be all you need to do.
t
sorry for the late reply, but thanks David!