本文主要是介绍上传苹果应用 At least one of the following architecture(s) must be present: armv6 (-19033),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Xcode 4 ,上传苹果商店报错。
warning: iPhone/iPod Touch: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv6 (-19033)
解决方法:
1.
For some reason the default architecture settings with xCode 4.2 is only for armv7. Go to Target -> Build Settings -> Architectures -> Release on value dropdown pick "Other...",
remove $(ARCHS_STANDARD_32_BIT), and add 2 rows first with "armv6" and second "armv7"
就是在 Build Setting ->Architectures->Release 选择other,然后删除 $(ARCHS_STANDARD_32_BIT), 加两行,第一行“armv6”,第二行"armv7"。
2. 网上一般都是说使用了 1后就解决了,但是我的不行。
修改 target 的build setting中的 ios Deployment Target 从 ios6.0改为4.3 。
就可以上传了。
这篇关于上传苹果应用 At least one of the following architecture(s) must be present: armv6 (-19033)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!