Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know if your .ipa is 64-Bit

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.

like image 558
Manav Sharma Avatar asked Jan 09 '23 08:01

Manav Sharma


1 Answers

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.

like image 118
A-Live Avatar answered Jan 11 '23 21:01

A-Live