美文网首页
苹果APP审核被拒记录(持续更新)

苹果APP审核被拒记录(持续更新)

作者: liuxingzi | 来源:发表于2019-03-29 10:13 被阅读0次

    1、未找到ApplePay使用场景 (被拒时间 2019年3月28)

    审核问题描述:
    Guideline 2.1 - Information Needed
    During review, we noticed that your app utilizes the Apple Pay API.
    However, we were unable to verify any integration of Apple Pay within your app.
    
    存在问题:

    由于我们的APP里面集成了ApplePay支付,但是通过银联ApplePay的方式,所以,我们在支付列表的显示里做了判断,如果用户的Wallet里已经添加绑定了银联卡,才显示出ApplePay的支付方式。

    判断代码如下:

     if (@available(iOS 9.2, *)) {
            return [PKPaymentAuthorizationViewController  
    canMakePaymentsUsingNetworks: @[PKPaymentNetworkChinaUnionPay]];
        }
    
    解决方案:

    申述,向苹果说明情况,不需要重新提交,可以通过审核。

    2、权限申请描述文案不清晰(2019年3月28日)

    审核问题描述:
    Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
    We noticed that your app requests the user’s consent to access their camera  
    but does not clarify the use of the camera in the applicable purpose string.
    
    存在问题:

    APP的info.plist中
    原写法

    Privacy - Camera Usage Description --> App需要您的同意,才能访问相机

    这个写法存在已久了,从iOS10发布就这样写的,没想到几年后杯具了。

    改吧

    解决方案:

    Privacy - Camera Usage Description --> 允许后,才可以使用相机拍摄照片用以更改头像、扫描二维码

    3、强制用户安装其它APP (2019年)

    审核问题描述:
    Guideline 4.2.3 - Design - Minimum Functionality
    We were required to install the QQ app before we could log in via QQ.
    Users should be able to log in with QQ and access their accounts
     without having to install any additional apps.
    
    存在问题:

    这是由于QQ放弃了Web方式登录了,我们没有及时更新。

    解决方案:

    与微信的处理原则一样,先检测用户是否安装了QQ,未安装就不显示QQ相关的操作了。

    相关文章

      网友评论

          本文标题:苹果APP审核被拒记录(持续更新)

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