关于Fastlane自动化打包
【关于Fastlane自动化打包】利用闲暇时间,在网上搜集资料并亲自动手为项目添加了fastlane自动化打包。在这里我使用fastlane的目的是为了以下几点:
- 一行命令行可以实现打包,简直便利至极。
- 可以自动上传到蒲公英或fir.im内测平台进行测试分发,也可以直接上传到TestFlight,iTunes Connect。
- 自动打包上传到AppStore。
其实fastlane的优点远不止这些,想要在项目中添加fastlane的小伙伴可以自己在网上查一查。这里只是我自己根据需求添加的,接下来看看我在项目中是怎么添加fastlane的吧。
1、安装Xcode命令行工具 在命令行里输入
xcode-select --install
如果提示xcode-select: error: command line tools are already installed, use "Software Update" to install updates
表示已经安装。2、安装Fastlane
sudo gem install fastlane
或者 brew cask install fastlane
这里我使用gem安装的,安装完成之后确认安装是否成功,输入 fastlane -v
查看fastlane的安装路径和版本号。3、初始化Fastlane cd到项目有.xcodeproj的文件夹下。
命令行工具中输入
fastlane init
初始化时会出现4个选项:
- 1.Automate screenshots(自动化截图)
- 2.Automate beta distribution to TestFlight(TestFlight)
- 3.Automate App Store distribution(AppStore发布版本)
- 4.Manual setup - manually setup your project to automate your tasks(自定义)
- Gemfile:如果你的项目用cocoapods管理的第三方,需要打开这个文件,添加
gem "cocoapods"
。 - Gemfile.lock:对fastlane进行版本控制。
- Appfile:用于存放AppID以及开发者的AppleID,配置好即可。
- Fastfile:用于管理创建的lane,调用各个action。
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
#https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
#https://docs.fastlane.tools/plugins/available-plugins
## Uncomment the line if you want fastlane to automatically update itself
update_fastlane# 是否自动更新 fastlanedefault_platform(:ios)#任务脚本
platform :ios do# 执行lane之前进行的操作,执行pod install
before_all do
cocoapods
endscheme_name = "XXX" #项目名称
api_token = "xxxxxxxx" # firim_api_tokenbuild_num = get_build_number() # 获取当前版本号
last_build_num = build_num.to_i + 1 #自增
last_build = last_build_num.to_s # 转成字符串desc "部署一个新的App版本到App Store"
lane :release do |options| #可以填写参数匹配
increment_build_number #Build Setting->Version配置好,自增
increment_version_number(version_number: options[:version]) #根据入参version获取app版本号
gym(
output_name:"#{scheme_name}#{last_build}", # 输出ipa的文件名为当前的build号
clean: true, # 在构建前先clean
configuration: "Release", # 打包配置名
export_method: "app-store", # 指定打包所使用的输出方式,目前支持app-store, package, ad-hoc, enterprise, development, 和developer-id,即xcodebuild的method参数
output_directory: "~/Desktop/#{scheme_name}_Package/Appstore" #ipa输出目录
)
deliver(force: true) # 上传所有信息到App Store
puts("**************| 上传成功 |**************")
enddesc "构建一个新的App版本到firim"
lane :beta do |options|
increment_build_number #Build Setting->Version配置好,自增
increment_version_number(version_number: options[:version])
gym(
output_name:"#{scheme_name}#{last_build}", # 输出ipa的文件名为当前的build号
clean: true, # 在构建前先clean
configuration: "Release", # 打包配置名
export_method: "ad-hoc", # 指定打包所使用的输出方式,目前支持app-store, package, ad-hoc, enterprise, development, 和developer-id,即xcodebuild的method参数
output_directory: "~/Desktop/#{scheme_name}_Package/Adhoc" #ipa输出目录
)
firim(firim_api_token: api_token)
puts("**************| 构建并上传成功 |**************")
enddesc "构建一个新的App版本develop版本"
lane :dev do |options|
increment_build_number #Build Setting->Version配置好,自增
increment_version_number(version_number: options[:version])
gym(
output_name:"#{scheme_name}#{last_build}", # 输出ipa的文件名为当前的build号
clean: true, # 在构建前先clean
configuration: "Debug", # 打包配置名
export_method: "development", # 指定打包所使用的输出方式,目前支持app-store, package, ad-hoc, enterprise, development, 和developer-id,即xcodebuild的method参数
output_directory: "~/Desktop/#{scheme_name}_Package/Development" #ipa输出目录
)
puts("**************| 构建成功 |**************")
end# 当lane执行完成之后的操作
after_all do |lane|endend
action的组合就是一个lane,我们用lane来进行打包操作,一定要根据自己项目的实际情况仔细的配置lane。 一定要在Xcode上配置好你的证书以及描述文件,如果是打的adhoc包,在release下配置adhoc的描述文件,若是上传AppStore,更改成appstore的描述文件。 options用于接收外部参数,在这里是确定项目版本号。 配置项目Build号实现自增,在TARGETS->Build Settings这样修改
文章图片
在项目中进行设置.png 打包上传到fir.im cd到项目的根目录,执行
fastlane add_plugin versioning
fastlane add_plugin firim
这两句是添加fastlane自动上传的工具,会自动生成Pluginfile进行工具管理。
然后执行
fastlane beta version:1.2
然后就可以安心的去做其他的事了,等到上传成功之后就可以在fir.im上看到上传成功的版本,同时桌面上也会创建XXX_Package的文件夹,里面就是上传的ipa。
同样的,上传至AppStore以及打develop包也是根据lane进行对应的命令行操作。 好了,到这里我们完成了一个简单的fastlane自动化打包,一行命令行就实现自动打包,是不是很方便。fastlane只是一个自动打包的工具,其实在工作中,还是要根据自己实际情况去做,切勿盲目跟风,尽量的使工作变得简单舒适。
推荐阅读
- 关于QueryWrapper|关于QueryWrapper,实现MybatisPlus多表关联查询方式
- 四首关于旅行记忆的外文歌曲
- 醒不来的梦
- 关于自我为中心的一点感想
- 人脸识别|【人脸识别系列】| 实现自动化妆
- 「按键精灵安卓版」关于全分辨率脚本的一些理解(非游戏app)
- 关于Ruby的杂想
- 关于读书的思考
- 关于this的一些问题(1)
- 《声之形》