APP上架问题记录

1.Missing 64-bit support - Beginning on February 1, 2015 new iOS apps submitted to the App Store must include 64-bit support and be built with the iOS 8 SDK. Beginning June 1, 2015 app updates will also need to follow the same requirements. To enable 64-bit in your project, we recommend using the default Xcode build setting of “Standard architectures” to build a single binary with both 32-bit and 64-bit code.

注:Build Active Architecture Only:是否只编译当前设备适用的指令集(如果这个参数设为YES,使用iPhone 6调试,那么最终生成的一个支持ARM64指令集的Binary。一般在DEBUG模式下设为YES,RELEASE设为NO)

2.Xcode 和 Application Loader上传都提示成功 但在itunes connect构建版本里就是看不到上传的构建版本,活动里面也没任何信息

提示如下:

 

上传一个别的工程(可以上传成功有显示的工程),活动里面有显示,并显示了前面上传的工程,提示为无效的二进制文件。

找公司要了注册时的邮箱密码,查看开发者账号邮箱(注册时留的邮箱)有提示问题所在如下:

原来是涉及到了私有api的调用,进入工程搜索 _autolayoutTrace, parentFrame这两个字段,把涉及这两个字段的第三方移除,再上传就OK.

 

 附:工程的基本设置

 

 

 

3.上传报错 ERROR ITEMS-90164  get-task-allow

解决方法:clean工程再从新打包即可,貌似是xcode 7.3的一个bug,时好时坏。

附录:官方对get-task-allow这个字段的描述

这个字段是调试的时候用的,表面上看上去是打包的时候证书选错选成develop的证书导致,不用管它,如果证书没选错,clean工程再打包即可

 

4.iOS提交AppStore两次因为2.16项不符合被拒(UIBackgroundModes配置问题)

AppS被拒原因描述:

发件人 Apple

ngRepeat: rejectionReason in message.qcRejectionReasons

2.16 - Multitasking Apps may only use background services for their intended purposes: VoIP, audio playback, location, task completion, local notifications, etc.

end ngRepeat: rejectionReason in message.qcRejectionReasons

2.16 Details

Your app declares support for audio in the UIBackgroundModes key in your Info.plist but did not include features that require persistent audio.

Specifically, we were unable to locate any article contents within the app that utilizes audio feature.

Next Steps

The audio key is intended for use by applications that provide audible content to the user while in the background, such as music player or streaming audio applications. Please revise your app to provide audible content to the user while the app is in the background or remove the "audio" setting from the UIBackgroundModes key.

 
posted @ 2016-04-07 15:39  niwanglong385  阅读(180)  评论(0)    收藏  举报