美文网首页iOS 笔记iOS Developer
由于个推和bugly热更新导致苹果审核被拒

由于个推和bugly热更新导致苹果审核被拒

作者: 道道明明白白 | 来源:发表于2017-04-10 16:41 被阅读956次

提交审核后被拒,苹果回复的信息如下:

Guideline 2.5.2 - Performance Your app, extension, or linked framework appears to contain code designed explicitly with the capability to

Guideline 2.5.2 - Performance

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 2.5.2 and section 3.3.2 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 StepsTo 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 的行为”,说白了不就是使用了热更新了么,我知道项目中没有用到热更新的东西,所有马上我就想到一定是第三方库中含有。 

但是为了避免我的项目中无意间用到了,所以按照苹果的要求,全局搜索了一下邮件中说的方法,

dlopen    dlsym 没有用到

 respondsToSelector  performSelector 用到了,但是都是些正常的使用  没有什么问题

method_exchangeImplementations    AFNetworking 用到了一处,没有影响的,不影响审核

到这里基本排除了自己写的代码中含有热更新的东西。

之后就是第三方的库了

所有的第三方平台都在这里

使用到热更新的就是bugly 和 老版本的个推 其他没有问题

去bugly 官网没有看到新版本,所以我就在项目中将bugly移除了  也不用了。用了也不好使,bugly平台的数据都不好好维护了。 

个推升级到最新版本就ok了。

注意UserNotifications.framework 是弱引用的 添加的时候记得勾选后面的选项

相关文章

  • 由于个推和bugly热更新导致苹果审核被拒

    提交审核后被拒,苹果回复的信息如下: Guideline 2.5.2 - Performance Your app...

  • 苹果2.5.2私有方法被拒解决方法

    最近由于热更新等一些问题,苹果各种拒绝,苹果审核被拒,返回如下:Guideline 2.5.2 - Perform...

  • iOS马甲包之修改项目名和批量修改类名

    马甲包产生背景: 1、解决被拒问题: 由于苹果市场单一 审核严格 很有可能导致各种各样的上线被拒问题 而多次被拒...

  • 苹果审核指南

    如何在苹果审核多次被拒被警告的情况下通过审核 爆!WWDC2017后,苹果审核指南首次重大更新 苹果审核内容解读(...

  • 足够强大,才有拒绝的权利

    (一) 在朋友圈看到一篇文章,核心是苹果禁止热更新、禁止JSPatch技术,于是当天众多App收到了苹果的审核被拒...

  • 如何使用手机测试ipv6

    前面项目提交审核的时候,被苹果审核人员被拒,被拒理由是:Apps are reviewed on an IPv6 ...

  • iOS审核问题

    App Store 审核指南 || iOS应用审核条款 苹果App审核汇总 苹果审核进入审核状态,到完成审核被拒,...

  • 苹果审核

    APP首次提交苹果App Store加速审核经验 iOS 中APP被拒以及解决办法总结<待更新> 揭秘苹果App ...

  • 打开APP设置界面

    最近苹果审核严格,导致"prefs:root="方式已私有api的理由被拒删除所有"prefs:root="跳转设...

  • 审核被拒之 IPv6 network

    一直知道苹果的审核严厉,开个文集 AppStore 审核被拒记录,专门记录我开发的 App 被拒的记录! 这次被拒...

网友评论

    本文标题:由于个推和bugly热更新导致苹果审核被拒

    本文链接:https://www.haomeiwen.com/subject/pjdtattx.html