【记录】iOS上架审核被拒

文章目录

      • Guideline 1.2 - Safety - User Generated Content
      • Guideline 2.1 - Performance - App Completeness
      • Guideline 4.3 - Design
      • Guideline 5.1.1(v) - Data Collection and Storage
      • Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
      • Guideline 5.1.2 - Legal - Privacy - Data Use and Sharing

Guideline 1.2 - Safety - User Generated Content

Guideline 1.2 - Safety - User Generated Content
- Require that users agree to terms (EULA) and these terms must make it clear that there is no tolerance for objectionable content or abusive users

- A mechanism for users to flag objectionable content

翻译
1、要求用户同意条款(EULA),这些条款必须明确表示不容忍不良内容或滥用用户;
2、用户标记不良内容的机制。

解决方法:
1、针对第一条,需要在注册添加协议条款(注意要加在明显的位置,我的App因为在下一步操作页面被误认为没有协议条款);
2、用户可以举报不良内容。

Guideline 2.1 - Performance - App Completeness

Guideline 2.1 - Performance - App Completeness


We discovered one or more bugs in your app. Specifically, an error message displayed upon login. Please review the details below and complete the next steps.

Review device details:

- Device type: iPad
- OS version: iOS 14.5.1

Next Steps

Please run your app on a device to reproduce the issues, then revise and submit your app for review.If at first you're unable to reproduce the issue, try the following:

- For new apps, uninstall all previous versions of your app from a device, then install and follow the steps to reproduce.
- For app updates, install the new version as an update to the previous version, then follow the steps to reproduce.

If we misunderstood the intended behavior of your app, please reply to this message in Resolution Center to provide information on how these features were intended to work.

App存在bug,崩溃或者登录超时无法进行后续审核等。修复问题即可。
国外访问国内网络受限,因为这个原因登录超时,我已经被拒好多次了,所以上架时和管理服务器的同事确认开通国外访问。

Guideline 4.3 - Design

This app duplicates the content and functionality of other apps submitted by you or another developer to the App Store, which is considered a form of spam.

Specifically, this app appears to be available in the same territories as another identical app submitted to the App Store. It would be appropriate to restrict the available territories for individual apps to those areas in which you intend to market and sell it and ensure none of the selected territories overlap.

Apps that simply duplicate content or functionality create clutter, diminish the overall experience for the end user, and reduce the ability of developers to market their apps.

The next submission of this app may require a longer review time, and this app will not be eligible for an expedited review until this issue is resolved.

公司新开发的APP要替代旧的APP,但是旧的还需要存在一段过渡期,APP图标是同一个。虽然这样解释了,但是因为同一个logo问题苹果审核方一点都不肯通融,没办法,下线旧APP,移除。

ps:开新项目一定要重新做个logo。

Guideline 5.1.1(v) - Data Collection and Storage

We noticed that your app supports account creation but does not appear to include an option to initiate account deletion.

Apps that support account creation must also offer account deletion to give App Store users more control of the data they’ve shared while using your app.

没有注销按钮,这个是忘记加了,苹果审核很早就开始要求注销功能了。我是添加了个注销按钮,调后台接口提示“注销申请已提交,等待审核。”,后续功能完善后端处理即可。

ps:只要APP有账号注册,注销功能必备。

Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage

We noticed that your app requests the user’s consent to access the photos and location, but doesn’t sufficiently explain the use of the photos and location in the purpose string.

To help users make informed decisions about how their data is used, permission request alerts need to explain and include an example of how your app will use the requested information.

权限问题,定位和相册权限说明过于简单,我只是说了用于上传您的位置上传您的照片,苹果要求必须明确说明一项用途。比如相机相册权限可以说用来修改头像,上传位置在某个功能展示位置等。只说不开启权限不允许某项操作,如果这项操作和位置看不出有必然联系的话,也是会被拒的。

ps:权限说明要明确用来做什么,说一个实例即可。

Guideline 5.1.2 - Legal - Privacy - Data Use and Sharing

添加隐私协议,我的是通讯录被拒,在通讯录页面添加个隐私协议链接。

Guideline 5.1.2 - Legal - Privacy - Data Use and Sharing


Your app accesses user data from the device but does not have the required precautions in place.

- Specifically, If your app will be transmitting protected user data, the usage string in your access request should clearly inform the user that their data will be uploaded to your server if they consent.

Next Steps

To collect personal data with your app, you must make it clear to the user that their personal data will be uploaded to your server and you must obtain the user's consent before the data is uploaded. You must also have a Privacy Policy URL and ensure that the URL you provide directs users to your privacy policy.

这个按照网上一些教程改了几次都没通过,最后改成下面这样,过了。
我们需要访问您的通讯录,用于将通讯录中选定的联系人设定为紧急联系人,并且会上传保存到我们的服务器中。请放心,我们不会将数据用做其他用途。
可能他的意思是要明确说出会把用户数据上传保存到我们的服务器中这句话吧。

你可能感兴趣的:(审核,iOS,ios)