xcode6.3发布ios app注意事项

来源:互联网 发布:西蒙斯体测数据 编辑:程序博客网 时间:2024/05/21 06:10

1、在填写发布信息时,有一个App审核信息的演示账户,如果你的app中需要用户登录,或者需要相关的操作权限才能进入,请在这里填写你的相关帐号信息,并对相关信息进行说明。

2、提交应用到app store之前,确认下面几个配置,不然回报error itms-90086的错误

Make sure that for BOTH:

  • Project --> Build Settings --> Architectures

Project --> Build Settings --> Architectures

AND:

  • Targets --> Build Settings --> Architectures

Targets --> Build Settings --> Architectures

You have the following 4 things:

  1. Architectures set to Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)
  2. Base SDK set to some iOS8 SDK, for example Latest iOS (iOS 8.3) or iOS 8.3
  3. Build Active Architecture Only --> Release set to No
  4. Valid Architectures set to arm64 armv7 armv7s

You will then no longer get the ERROR ITMS-90086





0 0