bug描述:
ERROR ITMS-90086:"missing 64-bit support. beginning on february 1, 2015, new iOS apps submitted to the app store must be include 64-bit support and be built with the ios8 SDK......
这是因为现在提交的app必须支持64位,
但是使用cocospod时,在Podfile文件里面加上:
post_installdo |installer| installer.project.targets.eachdo |target| target.build_configurations.eachdo |config| config.build_settings['ARCHS'] ="armv7 arm64"end end end
还可以参考下面的网址 :ios-app-submission-missing-64-bit-support
iOS App 64位支持
从2015年2月起,提交至App Store的新iOS应用必须包含64位支持并使用iOS 8 SDK构建。本文介绍如何通过修改Podfile文件来确保使用CocoaPods的应用兼容64位架构。
1万+

被折叠的 条评论
为什么被折叠?



