Xcode crashing when fetching team list

后端 未结 7 1696
臣服心动
臣服心动 2021-01-02 04:59

So basically Xcode 6.1 is crashing whenever it\'s trying to get team list. From the general tab in the main screen, when trying to submit the app to iTunes, trying to valida

相关标签:
7条回答
  • 2021-01-02 05:33

    Same problem here, however it's possible to compile and generate a .ipa file by the command line interface:

    xcodebuild archive -project $projectname.xcodeproj -scheme $schemename -archivePath projectname.xcarchive
    xcodebuild -exportArchive -archivePath $projectname.xcarchive -exportPath $projectname -exportFormat ipa -exportProvisioningProfile “Provisioning Profile Name”
    

    Hope this could help.

    0 讨论(0)
提交回复
热议问题