美文网首页
iOS 审核采坑,因访问隐私权限描述被拒

iOS 审核采坑,因访问隐私权限描述被拒

作者: 流星载梦 | 来源:发表于2018-06-12 09:43 被阅读548次

    先说一下采坑经过吧,之前项目中访问相册相机都是简单描述一下“是否允许此App访问您的xxx”,上线没有因为这个被拒,这次竟然因为这个提交了两次,第一次被拒后觉得是不是审核人员故意的,因为以前有一次被拒后什么都没有改动然后就过了,等第二次被拒时才意识到是我错了;下面看一下被拒的描述吧

    发件人 Apple
    5. 1.1 Legal: Privacy - Data Collection and Storage
    Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
    We noticed that your app requests the user’s consent to access their photos but does not clarify the use of this feature in the permission modal alert.Please see attached screenshot for details.Next StepsTo resolve this issue, please revise the permission modal alert to specify why the app is requesting access to the user's photos.ResourcesFor additional information and instructions on configuring and presenting an alert, please review the Requesting Permission section of the iOS Human Interface Guidelines and the Information Property List Key Reference. You may also want to review the Technical Q&A QA1937: Resolving the Privacy-Sensitive Data App Rejection page for details on how to provide a usage description for permission request alerts.

    后来经过查了些博客,原来有好多人都遇到过,隐私权限配置又发生了改变,将原来的相册访问权限分开了,现在有读写两种权限。


    iOS11访问权限列表(描述清楚具体用途)

    隐私数据 对应key值 提示语
    相册(读) NSPhotoLibraryUsageDescription "XXX"需要您的同意,才能访问相册,以便于XXX
    相册(写) NSPhotoLibraryAddUsageDescription "XXX"需要您的同意,才能添加照片,以便于XXX
    相机 NSCameraUsageDescription "XXX"需要您的同意,才能访问相机,以便于XXX
    麦克风 NSMicrophoneUsageDescription "XXX"需要您的同意,才能访问麦克风,以便于XXX
    位置 NSLocationUsageDescription "XXX"需要您的同意,才能访问位置,以便于XXXX
    在使用期间访问位置 NSLocationWhenInUseUsageDescription "XXX"需要您的同意,才能在使用期间访问位置 ,以便于XXX
    始终访问位置 NSLocationAlwaysUsageDescription "XXX"需要您的同意,才能始终访问位置,以便于XXX
    日历 NSCalendarsUsageDescription "XXX"需要您的同意,才能访问日历,以便于XXX
    提醒事项 NSRemindersUsageDescription "XXX"需要您的同意,才能访问提醒事项,以便于XXX
    运动与健身 NSMotionUsageDescription "XXX"需要您的同意,才能访问运动与健身,以便于XXX
    健康更新 NSHealthUpdateUsageDescription "XXX"需要您的同意,才能访问健康更新,以便于XXX
    健康分享 NSHealthShareUsageDescription "XXX"需要您的同意,才能访问健康分享 ,以便于XXX
    蓝牙 NSBluetoothPeripheralUsageDescription "XXX"需要您的同意,才能访问蓝牙,以便于XXX
    媒体资料库 NSAppleMusicUsageDescription "XXX"需要您的同意,才能访问媒体资料库,以便于XXX

    参看原文配置iOS11最新隐私信息访问描述

    相关文章

      网友评论

          本文标题:iOS 审核采坑,因访问隐私权限描述被拒

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