获取团队列表时 Xcode 崩溃

人气:398 发布:2022-10-16 标签: crash xcode itunes

问题描述

所以基本上 Xcode 6.1 在尝试获取团队列表时都会崩溃.从主屏幕的常规选项卡中,尝试将应用程序提交到 iTunes 时,尝试验证应用程序.. 每当它尝试获取团队列表时,它都会崩溃.一个小时前它运行良好,但是当我们在 iTunes 帐户中添加一些团队成员进行内部测试时,它开始崩溃.

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.

有什么想法吗?

推荐答案

同样的问题,但是可以通过命令行界面编译生成.ipa文件:

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"

希望这会有所帮助.

307