Hi guys! Is there a way to produce iOS framework w...
# kotlin-native
a
Hi guys! Is there a way to produce iOS framework with both arm32 and arm64 architectures? I'm having hard time with app archive..
b
atm, you have to build both, and then use
lipo
to combine them. I have a gist up that creates tasks to do this: https://gist.github.com/benasher44/32f602b9d5ec596ceaa3c9d190b14fc9
This combines arm64 and x86_64, but the principle applies here
a
@basher many thanks!
s
It shouldn’t be necessary to support 32-bit iOS apps any more unless you have to support the iPhone 5 (or 5c). Everything from the 5s to present is 64-bit.
2