美文网首页
APP 上架被拒 Guideline 2.1 - Perform

APP 上架被拒 Guideline 2.1 - Perform

作者: dragon海鸟 | 来源:发表于2020-08-21 10:32 被阅读0次

    被拒说明

      1. 1 Performance: App Completeness

    Guideline 2.1 - Performance - App Completeness

    We discovered one or more bugs in your app when reviewed on iPad running iOS 13.5.1 on Wi-Fi.

    Specifically, we are unable to login

    Next Steps

    To resolve this issue, please run your app on a device to identify any issues, then revise and resubmit your app for review.

    If we misunderstood the intended behavior of your app, please reply to this message in Resolution Center to provide information on how these features were intended to work.

    For new apps, uninstall all previous versions of your app from a device, then install and follow the steps to reproduce the issue. For updates, install the new version as an update to the previous version, then follow the steps to reproduce the issue.

    Resources

    For information about testing your app and preparing it for review, please see Technical Note TN2431: App Testing Guide.

    For a networking overview, please review About Networking.

    Please see attached screenshot for details.

    解决问题思路

    1. 服务器本身不支持IPV6
    2. SDK或者网络框架问题(此问题自行检查,使用最新的SDK和常用最新网络框架就可以解决)

    解决过程

    1. 检测服务器是否支持ipv6
      终端命令行输入 dig nocmd nostats [域名]
    dragon@Dragon ~ % dig nocmd nostats leekdash.com
    
    ; <<>> DiG 9.10.6 <<>> nocmd nostats leekdash.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44472
    ;; flags: qr rd ra ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;nocmd.             IN  A
    
    ;; Query time: 1 msec
    ;; SERVER: 192.168.31.1#53(192.168.31.1)
    ;; WHEN: Fri Aug 21 10:08:06 CST 2020
    ;; MSG SIZE  rcvd: 23
    
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50144
    ;; flags: qr rd ra ad; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
    
    ;; QUESTION SECTION:
    ;nostats.           IN  A
    
    ;; Query time: 0 msec
    ;; SERVER: 192.168.31.1#53(192.168.31.1)
    ;; WHEN: Fri Aug 21 10:08:06 CST 2020
    ;; MSG SIZE  rcvd: 25
    
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37821
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 19
    
    ;; OPT PSEUDOSECTION:
    ; EDNS: version: 0, flags:; udp: 4096
    ;; QUESTION SECTION:
    ;leekdash.com.          IN  A
    
    ;; ANSWER SECTION:
    leekdash.com.       30  IN  A   39.107.26.13
    
    ;; AUTHORITY SECTION:
    leekdash.com.       16856   IN  NS  dns13.hichina.com.
    leekdash.com.       16856   IN  NS  dns14.hichina.com.
    
    ;; ADDITIONAL SECTION:
    dns13.hichina.com.  531 IN  A   140.205.81.25
    dns13.hichina.com.  531 IN  A   106.11.141.115
    dns13.hichina.com.  531 IN  A   106.11.141.125
    dns13.hichina.com.  531 IN  A   106.11.211.55
    dns13.hichina.com.  531 IN  A   106.11.211.65
    dns13.hichina.com.  531 IN  A   140.205.41.15
    dns13.hichina.com.  531 IN  A   140.205.41.25
    dns13.hichina.com.  531 IN  A   140.205.81.15
    dns14.hichina.com.  170752  IN  A   106.11.211.56
    dns14.hichina.com.  170752  IN  A   106.11.211.66
    dns14.hichina.com.  170752  IN  A   140.205.41.16
    dns14.hichina.com.  170752  IN  A   140.205.41.26
    dns14.hichina.com.  170752  IN  A   140.205.81.16
    dns14.hichina.com.  170752  IN  A   140.205.81.26
    dns14.hichina.com.  170752  IN  A   106.11.141.116
    dns14.hichina.com.  170752  IN  A   106.11.141.126
    dns13.hichina.com.  531 IN  AAAA    2400:3200:2000:32::1
    dns14.hichina.com.  1127    IN  AAAA    2400:3200:2000:33::1
    
    ;; Query time: 63 msec
    ;; SERVER: 192.168.31.1#53(192.168.31.1)
    ;; WHEN: Fri Aug 21 10:08:06 CST 2020
    ;; MSG SIZE  rcvd: 417
    

    执行结果第6行 ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 44472
    执行结果:status:NOERROR 代表服务器支持IPV6
    如果错误,请参错误表


    错误参照表.png
    1. Mac搭建ipv6环境检测APP网络请求是否支持ipv6
      具体教程参照本地如何搭建IPv6环境测试你的APP

    相关文章

      网友评论

          本文标题:APP 上架被拒 Guideline 2.1 - Perform

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