天天看点

App Store审核被拒:App Store Review Guideline 2.5.2 and section 3.3.2 of the Apple Developer Program

原文链接:http://blog.csdn.net/crazyzhang1990/article/details/71703314

一、问题描述

最近新开发了个软件提交App Store审核,被拒了两次,原因都是:

Performance: Software Requirements

Hello,

Thank you for resubmitting your app for review.

Guideline  - Performance - Software Requirements


Your app, extension, or linked framework appears to contain code designed explicitly with the capability to change your app’s behavior or functionality after App Review approval, which is not in compliance with App Store Review Guideline  and section  of the Apple Developer Program License Agreement.

This code, combined with a remote resource, can facilitate significant changes to your app’s behavior compared to when it was initially reviewed for the App Store. While you may not be using this functionality currently, it has the potential to load private frameworks, private methods, and enable future feature changes. This includes any code which passes arbitrary parameters to dynamic methods such as dlopen(), dlsym(), respondsToSelector:, performSelector:, method_exchangeImplementations(), and running remote scripts in order to change app behavior and/or call SPI, based on the contents of the downloaded script. Even if the remote resource is not intentionally malicious, it could easily be hijacked via a Man In The Middle (MiTM) attack, which can pose a serious security vulnerability to users of your app.

Next Steps

To resolve this issue, please perform an in-depth review of your app and remove any code, frameworks, or SDKs that fall in line with the functionality described above and resubmit your app’s binary for review.
           

二、问题分析

翻译了一下大概意思是这样婶的:

你的App违反了App Store的审核规则2.5.2和3.3.2。应用程序中或者框架中使用了苹果禁止的私有方法,或者热修复。

我的首先Xcode中全局搜索苹果给出的几个私有方法:dlopen()、dlsym()、responseToSelector等方法,发现我代码中没有这些方法,这样自己的问题就可以排除了,那么问题肯定出现在使用的这些第三方库中。

三、解决问题办法

经过排除有两个第三方库使用了热修复:
           

1.个推SDK - 第三方推送

2.高德地图SDK - 地图功能

跟个推和高德的开发人员联系之后他们目前已经决定了因为自身SDK问题可能引起的App Store审核被拒,大家只需要更新要最新的SDK即可。

下边是高德地图给开发者的解决问题方法

继续阅读