xcode 错误 ITMS-90086 提交应用程序
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/29567690/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
ERROR ITMS-90086 submitting app
提问by ghiboz
I need to submit my app and I retrieve this error:
and the configuration is on 64 bits:
我需要提交我的应用程序并检索到此错误:
并且配置为 64 位:
I don't know how to do...
我不知道怎么办...
thanks in advance
提前致谢
回答by Dave Chambers
Make sure that for BOTH:
确保对于BOTH:
- Project--> Build Settings --> Architectures
- 项目--> 构建设置 --> 架构
AND:
和:
- Targets--> Build Settings --> Architectures
- 目标--> 构建设置 --> 架构
You have the following 4 things:
你有以下四件事:
Architectures
set toStandard architectures (armv7, arm64) - $(ARCHS_STANDARD)
Base SDK
set to some iOS8 SDK, for exampleLatest iOS (iOS 8.3)
oriOS 8.3
Build Active Architecture Only
-->Release
set toNo
Valid Architectures
set toarm64 armv7 armv7s
Architectures
设置Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)
Base SDK
设置为一些 iOS8 SDK,例如Latest iOS (iOS 8.3)
或iOS 8.3
Build Active Architecture Only
-->Release
设置为No
Valid Architectures
设置arm64 armv7 armv7s
You will then no longer get the ERROR ITMS-90086
然后你将不再获得 ERROR ITMS-90086
回答by Ramy Adeeb
Make sure your "Build Active Architecture Only" setting is set to "No"
确保您的“仅构建活动架构”设置为“否”
回答by Totoro
I case you bought an old app somewhere and are having this error message, also check that the deployment target is set to 8.0 or higher in both the project and the target.
如果您在某处购买了旧应用程序并收到此错误消息,请同时检查项目和目标中的部署目标是否设置为 8.0 或更高版本。