Fastlane是一套使用Ruby写的自动化工具集,旨在简化Android和iOS的部署过程,自动化你的工作流。它可以简化一些乏味、单调、重复的工作,像截图、代码签名以及发布App
一行命令实现打包工作,不需要时时等待操作下一步,节省打包的时间去做其他的事。
Fastlane的优势主要是下面几方面:
-
避免频繁修改配置导致可能出现的Release/Debug环境错误,如果没有检查机制,那将是灾难,即使有检查机制,我们也不得不重新打包,浪费了一次打包时间。毕竟人始终没有程序可靠,可以告别便利贴了。
-
通过配置自动上传到蒲公英,fir.im内测平台进行测试分发,也可以直接上传到TestFlight,iTunes Connect。
-
证书的同步更新,管理,在新电脑能够迅速具备项目打包环境。
一、安装xcode命令行工具
终端执行xcode-select --install
,如果没有安装,会弹出对话框,点击安装。如果提示xcode-select: error: command line tools are already installed, use "Software Update" to install updates
表示已经安装
xcode-select --install
二、安装Fastlane
终端执行sudo gem install fastlane -NV
使用gem安装的或brew cask install fastlane
安装完了终端执行fastlane --version
,确认下是否安装完成和当前使用的版本号。
sudo gem install fastlane -NV
fastlane --version
三、初始化Fastlane
1.终端cd到你的项目目录执行,再执行fastlane init
cd [工程根目录]
fastlane init
2.这里会弹出四个选项,问你想要用Fastlane做什么? 之前的老版本是不用选择的。选几都行,后续我们自行根据需求完善就可以,直接选3
执行(最新的Fastlane需要选2
)
3.终端输入AppleID 账号和密码,选择对应的App Store Connect teams和Developer Portal
4.登录成功后会提示你是否需要下载你的App的metadata,输入y
执行等待就可以,最终终端执行完毕之后返回bundle update
,则表示成功下载
5.打开工程,在设置Current Project Version 设置1
和 Versioning System设置Apple Generic
6.新开一个终端窗口,进入工程根目录,更新 bundle(会提示输入密码,这里输入开机密码)
cd [工程根目录]
bundle update
当返回Bundle updated!
则表示bundle更新完成
7.到这一步前置配置全部完成
四、蒲公英 插件安装
1.进入工程根目录
cd [工程根目录]
2.安装蒲公英的 fastlane 插件
fastlane add_plugin pgyer
3.会询问fastlane 是否应该修改路径中的 Gemfile,输入y
执行等待,当返回Successfully installed plugins
,则表示安装插件成功
五、fastfile 配置
-
Fastlane 会自动在工程根目录中生成 fastlane 目录,其中就会有 fastlane 的配置文件 fastlane/Fastfile,Fastfile可以选择各种文本工具打开,个人推荐使用VSCode,编辑使用更方便
-
目前配置的蒲公英的Fastfile,不同的项目,开发人员,蒲公英账号,只需要修改对应的配置即可
-
更多信息查看蒲公英文档
# 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
default_platform(:ios)
platform :ios do
desc "用于发布到蒲公英"
lane :adHoc do
#—————————————————————根据实际项目对应修改—————————————————————————
#工程名称
scheme = "xxxx"
bundleID = "xxxxx"
#app名称
appName = "xxxxx"
#蒲公英获取key
api_key = "xxxx"
#user_key = "xxxx"(最新版本不需要user_key)
#蒲公英下载地址
downloadURL = "xxxx"
#—————————————————————————————————————————————————————————————
puts "*************| 开始上传蒲公英... |*************"
#输入蒲公英上传ipa包后输入的版本描述信息
puts "请输入版本描述:"
descStr = STDIN.gets
#指定打包环境 Debug、Test、Release、PreRelease
puts "请指定需要打包的方式:1:Debug 2:Test 3:PreRelease 4:Release"
configurationType = STDIN.gets
if configurationType == "4\n"
configurationName = "Release"
elsif configurationType == "3\n"
configurationName = "PreRelease"
elsif configurationType == "2\n"
configurationName = "Test"
elsif configurationType == "1\n"
configurationName = "Debug"
end
#构建打包 也叫gym
build_app(
clean: true, #打包前clean
scheme: scheme,
workspace: "#{scheme}.xcworkspace",
export_method: "ad-hoc",
include_bitcode: false,
configuration: configurationName,#打包方式
output_directory: "./ipa", #导出路径 文件夹没有的话会自动新建一个
silent: true, #在构建时隐藏终端不必要输出的信息
output_name: "#{scheme}_#{Time.now.strftime('%Y%m%d%H%M')}.ipa"
)
pgyer(api_key: api_key, update_description: "更新内容:#{descStr}")
notification(title: "提示", message: "#{appName} adHoc 打包成功: #{downloadURL}", open: downloadURL)
puts "*************| 上传蒲公英成功 |*************"
end
end
六、打包到蒲公英
cd [工程根目录]
fastlane adHoc
-
终端执行
astlane adHoc
中的adHoc
,是对应的Fastfile文件中的lane命名
-
注意
可以通知设置Fastfile文件中的configuration 来设置打包环境,而不需要手动选择,我已经在Fastfile配置中加了选择功能,根据对应的环境选择即可 -
等待终端执行结果即可,打包到蒲公英成功时,会有对应的通知提示,终端也会返回
fastlane.tools finished successfully