OC开发资料收集区iOS 知识点

ios app上架被拒理由汇总

2017-05-17  本文已影响983人  oc123

登录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. 
上一篇下一篇

猜你喜欢

热点阅读