在 Mobile Center 上构建时是否有一种方便的方法来增加内部版本号?
Is there a convenient way to increment build numbers when building on Mobile Center?
目前我正在 Xcode 构建阶段中使用构建脚本:
#!/bin/bash
buildPlist=${INFOPLIST_FILE}
CFBundleVersion=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" $buildPlist)
CFBundleVersion=$(($CFBundleVersion + 1))
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $CFBundleVersion" $buildPlist
目前每次构建的版本号都在增加,不是很优雅。
是否可以检查 Mobile Center 上的构建系统是否 运行 以便只增加构建号?
想不通。 – 非常感谢您的帮助。
我们目前正在努力支持 Mobile Center 的预构建脚本和 post-构建脚本以及自动递增的内部版本号。如果需要更多说明,或者您有除上述脚本之外的特定要求,请随时通过 Mobile Center 中的支持渠道与我们联系。我们还定期更新 product roadmap 作为我们取得进展的参考。
目前我正在 Xcode 构建阶段中使用构建脚本:
#!/bin/bash
buildPlist=${INFOPLIST_FILE}
CFBundleVersion=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" $buildPlist)
CFBundleVersion=$(($CFBundleVersion + 1))
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $CFBundleVersion" $buildPlist
目前每次构建的版本号都在增加,不是很优雅。
是否可以检查 Mobile Center 上的构建系统是否 运行 以便只增加构建号?
想不通。 – 非常感谢您的帮助。
我们目前正在努力支持 Mobile Center 的预构建脚本和 post-构建脚本以及自动递增的内部版本号。如果需要更多说明,或者您有除上述脚本之外的特定要求,请随时通过 Mobile Center 中的支持渠道与我们联系。我们还定期更新 product roadmap 作为我们取得进展的参考。