gpt4 book ai didi

xcodebuild - 如何使用xcode命令行构建企业ipa?

转载 作者:行者123 更新时间:2023-12-04 02:05:59 25 4
gpt4 key购买 nike

通常我使用 Xcode 使用企业构建来构建 ipa 文件:

enter image description here

enter image description here

enter image description here

enter image description here

这些使用 xcodebuild 的等效项是什么?

如何设置“exportOptions.plist”,尤其是关键标签?

最佳答案

我假设您使用的是 Xcode 8.3 或更高版本。那么以下应该可以解决问题:

xcodebuild -scheme <scheme> -exportArchive -archivePath <xcarchivepath> -exportPath <destinationpath> -exportOptionsPlist <plistpath>

  • <scheme> : 您要构建和导出的方案的名称
  • <xcarchivepath : 将放置任何创建的文件的目录,或者应该导出的文件
  • <destinationpath> : 从文件中导出的产品的目的地
  • <plistpath> : 配置存档导出的plist文件路径(见下文,teamID条目是可选的)

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>method</key>
    <string>enterprise</string>
    </dict>
    </plist>

您可以通过运行 xcodebuild -h 获得包含 plist 文件所有可用 key 的列表。在终端。

希望对您有所帮助。

关于xcodebuild - 如何使用xcode命令行构建企业ipa?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43396095/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com