Xcode 9 GM - Export and Upload to App Store crashing

后端 未结 7 1460
野的像风
野的像风 2021-02-14 09:31

I\'m trying to upload my app that uses ARKit (Unity build) to iTunes Connect for TestFlight distribution. While both exporting and uploading to app store processes from Xc

7条回答
  •  时光说笑
    2021-02-14 09:39

    run 'xattr' command in mac terminal,if result like bellow:

    python version 2.7.10 can't run /usr/bin/xattr.  Try the alternative(s):
    
    /usr/bin/xattr-2.6 (uses python 2.6)
    /usr/bin/xattr-2.7 (uses python 2.7)
    
    Run "man python" for more information about multiple version support in
    Mac OS X.
    

    you should creat a new soft link to '/usr/bin/xattr-2.7' run bellow commands:

    cd /usr/bin
    sudo rm xattr
    sudo ln -s xattr-2.7 xattr
    

    this solve my problem!

提交回复
热议问题