https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
j

judrummer

12/03/2018, 12:49 PM
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

Sam

12/03/2018, 12:57 PM
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

judrummer

12/03/2018, 1:00 PM
Thanks