:wave: What is the difference between a “regular f...
# multiplatform
h
👋 What is the difference between a “regular framework” generated with the
embedAndSignAppleFrameworkForXcode
task and an XCFramework generated with the
assembleXCFramework
task? When to use which? Thank you 🙏
f
XCframework: https://developer.apple.com/documentation/xcode/creating-a-multi-platform-binary-framework-bundle regular framework : Kind of XCframework but contains a single arch
you need to use xcframework when you want to distribute binary
for the regular framework, it’s when you want to embed your kotlin code directly to your iOS app.
switching between the two mode is kind of easy
h
thank you