iOS开发攻城狮的集散地iOS笔记

使用 agvtool 管理项目版本号

2018-11-08  本文已影响4人  superYang0033

使用 agvtool 管理项目版本号

背景:发包后当版本号相同时,无法判断包的新旧,另外,苹果在上传包时也必须保证同一版本不允许上传相同build号的 IPA 文件,为此,开发了动态更新 ipa 包 build 号功能。


经过一系列调研和测试,目前 iOS 主项目使用的版本号生成策略为两个:

Xcode Archive:

在项目上使用 shell 工具 PlistBuddy 来修改 info.plist 文件 build 号。
代码如下

echo $CONFIGURATION
if [ "Release" == "${CONFIGURATION}" ]
then
buildNumber="`date +%y%m%d%H%M%S`"
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "你的plist路径"
echo "build number increase"
fi

在 Xcode -> target -> Build Phase 中添加一个 shell

添加脚本 脚本设置

Jenkins Archive:

由于 Jenkins 权限问题,无法正常使用 PlistBuddy。经过调研和测试,采用 agvtool 来管理版本号。
jenkins 的设置也非常简单,首先需要安装一个插件 Build Timestamp Plugin
,用于产生实时的时间戳,即可使用 ${BUILD_TIMESTAMP}环境变量。
如果使用 Xcode plugin,则如下图配置,如果不是可使用 agvtool command line 配置,参考下文。

jenkins配置

如果设置后 build 号没有更新,多半是你的项目还不支持 agvtool,下面会讲如何适配你的项目。


扩展: agvtool

简单介绍下,agvtool 是苹果推出的一款用于管理软件版本号的工具,可以点击官方文档 查看细节。使用它可以轻松快捷的对项目 market-version 和 tech-version 进行快速自增和多 target 修改。

market-version 和 tech-version
market-version 和 tech-version
agvtool 使用前需要修改一些配置
  1. 修改 Current Project Version 的值为一个整数,配置 Versioning System 为 Apple Generic


    配置1
  2. 设置你的 market-version(CFBundleShortVersionString) 和 tech-version(CFBundleVersion)
    设置版本号
  3. 为避免执行 agvtool 时报 Cannot find "$(SRCROOT)/Info.plist, 需要删除的plist路径中的 $(SRCROOT),如下图。
    移除$(SRCROOT)
agvtool command line的一些基本功能
  1. 更新 market-version 为指定的版本
agvtool new-marketing-version <your_specific_version>

示例:更新 market-version 为 2.0

$ xcrun agvtool new-marketing-version 2.0
Setting CFBundleShortVersionString of project MyProject to:
    2.0.
Updating CFBundleShortVersionString in Info.plist(s)...
Updated CFBundleShortVersionString in "MyProject.xcodeproj/../MyProject/MyProject-Info.plist" to 2.0
  1. 更新 tech-version (Build 号)
agvtool next-version -all  # 其中 -all 为所有 target

示例:自动加一到更大的整数

$ xcrun agvtool next-version -all
Setting version of project MyProject to:
2.
Also setting CFBundleVersion key (assuming it exists)
Updating CFBundleVersion in Info.plist(s)...

注意:agvtool next-version -all 会自增 build 值到更大的整数,例如 1=>2,1.3 => 2。

  1. 设置 tech-version (Build 号) 为指定值
agvtool new-version -all <your_specific_version>

示例:设置 Build 号为 2.6.9

$ xcrun agvtool new-version -all 2.6.9
Setting version of project MyProject to:
2.6.9

Also setting CFBundleVersion key (assuming it exists)

Updating CFBundleVersion in Info.plist(s)...

Updated CFBundleVersion in "MyProject.xcodeproj/../MyProject/MyProject-Info.plist" to 2.6.9

  1. 查看当前 market-version
agvtool what-marketing-version

示例:查看当前 market-version 版本号

$ xcrun agvtool what-marketing-version
No marketing version number (CFBundleShortVersionString) found for Jambase targets.

Looking for marketing version in native targets...
Looking for marketing version (CFBundleShortVersionString) in native targets...

Found CFBundleShortVersionString of "2.0" in "MyProject.xcodeproj/../MyProject/MyProject-Info.plist"
  1. 查看当前 tech-version(Build 号)
agvtool what-version

示例:查看当前 Build 号

$ xcrun agvtool what-version
Current version of project MyProject is:
2.2
上一篇下一篇

猜你喜欢

热点阅读