XcodeBuild 在使用xcodebuild构建ipa时,因为需要设置new building system而失败
解决方案:
-UseModernBuildSystem=YES
xcodebuild archive -project {xcode_project} -scheme 'Unity-iPhone' -configuration '{build_type}' -archivePath {archive_path} CODE_SIGN_IDENTITY='{CODE_SIGN_IDENTITY}' PROVISIONING_PROFILE='{PROVISIONING_PROFILE}' -UseModernBuildSystem=YES
网友评论