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应用提交问题:缺少64位支持。从2015年2月起,所有提交到App Store的新iOS应用都必须包含64位支持并使用iOS 8 SDK构建。文章提供了具体的Podfile配置代码示例来帮助开发者解决此问题。
2万+

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



