报错:ERROR ITMS-90086: "Missing 64-bit support. iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK or later. We recommend using the default "Standard Architectures" build setting for "Architectures" in Xcode……
解决:
1.使用cocospod时,在Podfile文件里面加上:
post_installdo|installer| installer.project.targets.eachdo|target| target.build_configurations.eachdo|config| config.build_settings['ARCHS'] ="armv7
arm64"endendend
2.检查xcode设置,如图
3.发现设置一切正常,那么很有可能是因为打包的时候选择的设备是手机,换成iOS Device打包即可。