Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode crashing when fetching team list

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 validate the app.. whenever it tries to get team list, it crashes. It is working fine an hour ago but when we added some team members in the iTunes account for internal testing, it started crashing.

Any ideas?

like image 937
anivader Avatar asked Nov 13 '14 23:11

anivader


1 Answers

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.

like image 99
user1423454 Avatar answered Sep 22 '22 09:09

user1423454