iOS提交审核那些坑

最近半年主要处理iOS上架和测试方面的事,本来应该很好的记录这段新内容的,遇到过的坑的,还是主要缺时间,没有思考去整理。目前几次比较明显的问题记录下,方便后续经验总结。

问题当然是最能让人印象最深刻的,下面简单说下:

1,被拒后的问题解决中心-issues center 对话框,一旦重新选择build版本进行修改保存了,对话框就不能再进行答复了~~~少了最直接的沟通方式,并且还是可以带附件的,审核的人有时候也会发一个问题所在的图片过来,方便沟通。
其次一旦版本状态变为非rejected,那么也不会有下图这个快捷到问题中心的提示了


要重新找到这个问题解决中心查看详情,得通过版本build页面的最下方进入问题解决中心,一般人估计找不到,哈哈!





2,自动订阅型内购,需要在AppStore中进行描述,具体有参照格式:
You clearly and conspicuously disclose to users the following information regarding Your auto-renewing subscription:
– Title of publication or service
– Length of subscription (time period and/or content/services provided during each subscription period)
– Price of subscription, and price per unit if appropriate
– Payment will be charged to iTunes Account at confirmation of purchase
– Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period
– Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal
– Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase
– Links to Your Privacy Policy and Terms of Use
– Any unused portion of a free trial period, if offered, will be forfeited when the user purchases a subscription to that publication, where applicable
具体中文附图片:

这种类型的必须在描述中包含这段话,否则会不能通过。

3,永久购买型的内购,需要在应用中提供用户restore的接口。
审核的人会建议你提供给已购买的用户一个可以进行恢复的入口,主要满足用户切换设备的需求,可以继续保证购买的内容有效。
通常的做法是在新安装或者购买的页面进行提示或者加入button按钮。

4,AppStore的视频介绍上传有具体的尺寸,大小,内容等要求;并且介绍内容最好不要包含APP外的内容,只能是一些简单的操作步骤或者特色介绍,否则有点感觉像广告,也不会通过。视频要求如下:



5,由自动订阅的入口转永久型购买,因为两者都是在有效状态,为了保证之前版本的用户能正常购买或者订阅继续有效,又不能对该条内购进行删除,但是这样会让审核者找不到前者的入口。 调整内购类型后最好给审核的人说明下,特别是比如以前自动订阅型的现在直接不要了,然后替换成永久有效类型的,不然审核的人找不到对应的入口,又会给你返回来。

6,自动订阅型的购买需要在应用中也给用户提示:
Please note that we require the above information in both the app and its description. Adding the above information to the StoreKit modal alert is not sufficient; the information must also be listed somewhere within the app itself.
这个看自己怎么加吧,估计也就加在购买前的信息说明了。

7,同类产品在AppStore上太多或者内容太相似,也会被拒,收到的提示是这样的;

Design - 4.3

Your app duplicates the content and functionality of apps currently available on the App Store.
Apps that simply duplicate content and/or functionality create clutter, diminish the overall experience for the end user, and reduce the ability of developers to market their apps.
Next Steps
We encourage you to review your app concept and incorporate different content and features that are in compliance with the App Store Review Guidelines.
For app design information, check out the following videos: "Best Practices for Great iOS UI Design" and "Designing Intuitive User Experiences," available on the Apple Developer website.


所以产品初期就需要定位好自己的产品特色和布局,否则只能返工重做。

8,创建应用的时候 bundle ID是唯一的,不能与已有上架的同名,创建后也不能再修改了。

这个跟审核没有关系,只是补充说明下,没有正式确定名称前,好的bundle ID不要乱用哦!



猜你喜欢

转载自blog.csdn.net/julius_lee/article/details/54583714