ios app上架被拒理由汇总

作者: oc123 | 来源:发表于2017-05-17 10:57 被阅读983次

    登录iTunes查看被拒理由,以下为apple返回的信息,附解释:
    由于你在分享链接中,提供了苹果app的下载链接(一般是在另一个平台下载要上架的app),而这是不被允许的!

    //解决方法,分享时不能有苹果应用的下载链接;
    During review, your app installed or launched executable code, which is not permitted on the App Store. Specifically, your app uses the itms-services URL scheme to install an app.
    

    应用扩展 或 依赖库明确地被设计成,在应用程序审批之后,能够改变你的app的行为或者功能,这违反了 App Store Review Guideline 2.5.2 和 section 3.3.2 of the Apple Developer Program License Agreement
    这些代码结合一个远程的资源,拥有潜在的威胁,可能利用私有方法和私有库改变app的构造,严重影响的app的安全,这不被允许!
    高德地图、个推更新最新SDK

    //解决方法:将热更新怀疑对象的Framework移除,换上最新的,如果还不行,就重导全部换一次;
    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](https://developer.apple.com/app-store/review/guidelines/#software-requirements) and section 3.3.2 of the [Apple Developer Program License Agreement](https://developer.apple.com/terms/).
    
    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.
    

    你的app中有更新按钮或者提醒用户更新的警告框,为了避免用户困惑,app版本更新必须利用ios内嵌的更新机制

    //解决方法,移除更新或者提示更新的按钮或警告框;
    Your app includes an update button or alerts the user to update the app. To avoid user confusion, app version updates must utilize the iOS built-in update mechanism.
    

    你的app在使用位置服务时,声明它的使用目的不符合 iOS Human Interface Guidelines规则

    //解决方案:规范允许定位功能时的提示文字;
    Your app uses background location services but does not clarify the purpose of its use in the location modal alert as required in the [iOS Human Interface Guidelines](https://developer.apple.com/ios/human-interface-guidelines/ui-views/alerts/).
    

    由于用到位置服务,但是没有提供演示视频,所以被拒;

    //解决方案:提供一个演示视频
    2. 1 Performance: App Completeness
    Guideline 2.1 - Information Needed
    We have started the review of your app, but we are not able to continue because we need access to a video that demonstrates your app in use on an iOS device.
    
    Specifically, please provide a demo video to demonstrate how your app utilizes the location feature in the background. 
    

    相关文章

      网友评论

      • z_hy:你好,对于程序中使用私有方法这个问题,AFNetworking 中就使用 method_exchangeImplementations 这个方法,不会因为这个被拒吧?
        oc123:@z_hy 上架包中不能出现苹果应用商店以外的下载链接,否则必被拒,method_exchangeImplementations这个应该没多大关系
        z_hy:@oc123 查了很多资料,说是如果 method_exchangeImplementations 这个方法在静态库 .a 里面使用了,就会被拒。代码里面是可以用的。又检查了一遍代码,发现之前有过在蒲公英上分发应用,现在这个功能没有删除,应该属于上文中的一个问题,现在把那个分享下载链接改了,希望能过。
        oc123:@z_hy 这不是runtime中的方法么,怎么可能被拒,如果被拒应该是别的什么原因
      • 小子爱搞事:你好,针对这一条:
        During review, your app installed or launched executable code, which is not permitted on the App Store. Specifically, your app uses the itms-services URL scheme to install an app.
        你导致被拒的原因是什么?怎么处理的?可以说一下吗
        liyaoyao:请问你查到是什么样原因?
        小子爱搞事:@oc123 谢谢。我找到原因了
        oc123:@小子爱搞事 您好,被拒理由解释的很清楚了。使用了itms-service服务,你可以上网搜索一下这是什么就能找出原因了,希望能帮到您。

      本文标题:ios app上架被拒理由汇总

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