如何评判iOS应用程序是否是32位应用程序?

时间:2017-09-07 06:58:24

标签: ios

我听说iOS11不支持32位应用程序,所以我想知道我的应用程序是否是32位app.Any方式我能做什么?

3 个答案:

答案 0 :(得分:0)

请参阅构建设置中的架构设置,如下面的图片

enter image description here

答案 1 :(得分:0)

如果您的应用程序在XCode中的“构建设置”下的架构为“$(ARCHS_STANDARD_32_BIT)”则为32位。你可以修改为$(ARCHS_STANDARD),即(armv7,arm64)并在iOS 11上使用它。

答案 2 :(得分:0)

First, try unzip the ipa file to a directory, eg:

unzip <filename>.ipa -d ~/Downloads/tmp
Second, use file command to identify the architectures, eg:

file ~/Downloads/tmp/Payload/<appname>.app/<appname>

你会看到输出像&#34; Mach-O 64位可执行文件&#34;或&#34; Mach-O 32位可执行文件&#34;