Is anyone able to create both arm64 and x64 for iOS using cocoapods? I don't know what i'm doing wrong but i can't seem to provide a framework to cocoapods with both architectures...
s
Sam
03/27/2019, 5:38 PM
You need to use the lipo tool to combine them. The catch is that when archiving the app for upload the x64 portion of the framework needs to be removed with lipo again. Otherwise the app will be rejected.
s
Steven
03/27/2019, 5:41 PM
thank you for the insight! Do you know where i can find a tutorial for using the lipo tool in a kotlin mpp environment?