XCode自动递增内部版本号脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XCode自动递增内部版本号脚本相关的知识,希望对你有一定的参考价值。
1. Click on the **Build Phases** tab.2. Click on **Add Build Phase** (at the lower right corner) and choose **Add Run Script**.
4. Drag the **Run Script** section to **2nd** position from the top, just below Target Dependencies.
5. **Add snippet code**
6. Ensure, that **Run script only when installing** is __not checked__
7. **Rename** it
#!/bin/bash bN=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE") bN=$((0x$bN)) bN=$(($bN + 1)) bN=$(printf "%X" $bN) /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $bN" "$INFOPLIST_FILE"
以上是关于XCode自动递增内部版本号脚本的主要内容,如果未能解决你的问题,请参考以下文章
sh 使用当前时间戳自动更新xcode项目内部版本号和构建版本