使用 xcodebuild 从 archive 导出 ipa(转)

原文链接:https://blog.reohou.com/how-to-export-ipa-from-archive-using-xcodebuild/

XCODEBUILD ARCHIVE 时卡住
在调用上面的 xcodebuild archive 命令时卡住,


xcodebuild archive 卡住
xcodebuild archive 卡住

xcodebuild archive 卡住

可能是由于 scheme 文件不存在造成的。
一般只将 Xcode 项目文件中的 project.pbxproj 文件加入到版本控制,而忽略和用户相关的 scheme 文件。Xcode 会自动生成 scheme 文件,但是 xcodebuild 工具不会,在执行 archive 的时候会卡死。

使用 xcodebuild 从 archive 导出 ipa(转)_第1张图片
用户相关的 scheme
用户相关的 scheme

为了将 scheme 文件加入版本控制,需要将 scheme 改为共享类型。


使用 xcodebuild 从 archive 导出 ipa(转)_第2张图片
管理 scheme

管理 scheme

使用 xcodebuild 从 archive 导出 ipa(转)_第3张图片
共享 scheme
共享 scheme

使用 xcodebuild 从 archive 导出 ipa(转)_第4张图片
共享的 scheme

共享的 scheme

你可能感兴趣的:(使用 xcodebuild 从 archive 导出 ipa(转))