Ylisar 发表于 2022-7-13 13:24

Unity Xcode 命令行构建

清理工程

xcodebuild clean -project {xcode_project}/Unity-iPhone.xcodeproj -alltargets

构建工程

xcodebuild archive -project {xcode_project}/Unity-iPhone.xcodeproj -scheme 'Unity-iPhone' -configuration '{build_type}' -archivePath {archive_path} CODE_SIGN_IDENTITY='{CODE_SIGN_IDENTITY}' PROVISIONING_PROFILE='{PROVISIONING_PROFILE}'

导出包

xcodebuild -exportArchive -archivePath {archive_path} -exportPath {export_path} -exportOptionsPlist {export_Options_plist}

参数:
工程路径构建类型存档路径签名身份配置文件导出路径导出选项stringstringstringstringstringstringstringxcode_projectbuild_typearchive_pathCODE_SIGN_IDENTITYPROVISIONING_PROFILEexport_pathexport_Options_plist
获取 CODE_SIGN_IDENTITY = security cms -D -i 签名文件

如果因为需要设置new building system而失败,请参考
Unity 在使用xcodebuild构建ipa时,因为需要设置new building system而失败
页: [1]
查看完整版本: Unity Xcode 命令行构建