Hi everyone, just wondering if I can create an xcf...
# moko
m
Hi everyone, just wondering if I can create an xcframework of my shared code that has moko-resources and give to iOS team to use it in their project directly ?
a
hi. you can do it. if you will use dynamic framework iOS team will just use it without any additional actions. if you will use static framework - iOS team should add resources bundles from xcframework to project directly
m
is there any guides you recommend on how to generate both dynamic or static ?
a
just use
isStatic = false
in framework declaration in gradle. and use out of box
XCFramework
builder for kotlin. https://kotlinlang.org/docs/multiplatform-build-native-binaries.html#build-xcframeworks
m
Thank you very much 😄