I've built an .ipa file with following flags armv7 armv7s and arm64. Is there any way/ tool through which i can make sure the .ipa does have the 64-Bit support?
How does apple find out during app submission if the app binary does have 64-Bit support.
One of the options is to use
lipo -info %path-to-executable%
make sure you are not using path to .app folder or .ipa archive.I have created a script that takes
.ipa
file as an input and returns what architecture the app supports - (replace and with yours)Now, this
app_architecture_list
will give you result that will containarmv6
orarmv7
orarm64
, by which you can figure out.Note - you will need
PlistBuddy
for this.