美文网首页
iOS审核被拒,app隐私API设置

iOS审核被拒,app隐私API设置

作者: xymspace | 来源:发表于2020-09-02 11:15 被阅读0次

被拒正文:


Your app uses the "prefs:root=" non-public URL scheme, which is a private entity. The use of non-public APIs is not permitted on the App Store because it can lead to a poor user experience should these APIs change.

Specifically, your app uses the following non-public URL scheme:

prefs:root=privacy&path=camera
,prefs:root=privacy
,prefs:root=privacy&path=photos

Next Steps

To resolve this issue, please revise your app to provide the associated functionality using public APIs or remove the functionality using the "prefs:root" or "App-Prefs:root" URL scheme.

If there are no alternatives for providing the functionality your app requires, you can use Feedback Assistant to submit an enhancement request.


原因:

第三方库中使用了非法API,这里是用来帮助用户跳转到app的隐私设置。

解决方式:

iOS8.0以上:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];

源码跟踪:

UIKIT_EXTERN NSString *const UIApplicationOpenSettingsURLString API_AVAILABLE(ios(8.0));

相关文章

  • iOS审核被拒,app隐私API设置

    被拒正文: Your app uses the "prefs:root=" non-public URL sche...

  • iOS审核问题

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

  • App Store 被拒绝记录

    App Store 被拒绝记录 一、私有API 1、审核被拒描述: Your app uses or refere...

  • iOS 私有 API 问题

    最近 APP 被拒, 是因为如下 私有 API 被拒 0x00 使用iOS-private-api-checker...

  • 使用com.apple.springboard.lockcomp

    最近iOS 审核被拒新姿势,说是使用了私有API:com.apple.springboard.lockcomple...

  • 三方sdk使用私有api导致被拒

    提交App Store审核被拒,说是使用了私有api。 “com.apple.springboard.lockco...

  • 解决iOS15隐私跟踪(UserTracking)不弹授权框

    问题 最近在更新App时,发现审核被拒,给的信息是iOS15不弹隐私授权框 解决方案 延迟1秒钟调用授权

  • APP审核被拒

    APP审核被拒的问题: 1、是否使用了苹果的私有API,例如:LSApplicationWorkspace 解决方...

  • 跳转至系统设置

    链接:iOS一行代码带你跳转系统各设置页面打开系统设置:蓝牙、wifi、隐私等注意:私有api,审核慎用1、配置U...

  • 苹果审核

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

网友评论

      本文标题:iOS审核被拒,app隐私API设置

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