Hello guys, I read mpp sample in this url and fol...
# multiplatform
j
Hello guys, I read mpp sample in this url and follow it https://kotlinlang.org/docs/tutorials/native/mpp-ios-android.html. But how can I build ios framework to support both arm32 and arm64 in single build?
s
You can build them both and use the
lipo
command line tool to combine them. In this case it’s more trouble than it’s probably worth. Apple hasn’t supported 32-bit devices since iOS 10. They haven’t made any 32-bit devices since the iPhone 5.
😱 2
j
Thanks