Fastlane 是一套使用Ruby寫(xiě)的自動(dòng)化工具集嗦枢,旨在簡(jiǎn)化Android和iOS的部署過(guò)程,自動(dòng)化你的工作流屯断。它可以簡(jiǎn)化一些乏味文虏、單調(diào)侣诺、重復(fù)的工作,像截圖氧秘、代碼簽名以及發(fā)布App年鸳。方法簡(jiǎn)單粗暴,直接教你如何使用:
- 安裝xcode命令行工具
$ xcode-select --install
如果沒(méi)有安裝丸相,會(huì)彈出對(duì)話框阻星,點(diǎn)擊安裝。如果已經(jīng)安裝提示xcode-select: error: command line tools are already installed, use "Software Update" to install updates
- 安裝Fastlane
$ sudo gem install fastlane -NV
或
$ brew cask install fastlane
安裝完畢后執(zhí)行fastlane --version
,確認(rèn)下是否安裝完成和當(dāng)前使用的版本號(hào)(fastlane 2.99.1
)已添。
- 初始化Fastlane
cd到你的項(xiàng)目目錄執(zhí)行$ fastlane init
當(dāng)出現(xiàn) What would you like to use fastlane for?1. ... 2. ... 3. Automate App Store Distribution 4. ...
選擇3
,然后接著輸入你的開(kāi)發(fā)者賬號(hào)和密碼滥酥,登錄后會(huì)提示你是否需要下載你的App的metadata更舞。輸入y
等待就可以。
這個(gè)時(shí)候可能會(huì)出現(xiàn) fastlane init failed
坎吻,就問(wèn)問(wèn)你 Would you like to fallback to a manual Fastfile?
那么繼續(xù)選擇 y
接著幾次enter就可以了缆蝉。
- fastlane文件出現(xiàn)
初始化成功后會(huì)在當(dāng)前工程目錄生成一個(gè)fastlane文件夾,文件目錄為下瘦真。
metadata和screenshots分別對(duì)應(yīng)App元數(shù)據(jù)和商店應(yīng)用截圖刊头。
Appfile主要存放App的apple_id team_id
app_identifier等信息
Deliverfile中為發(fā)布的配置信息,一般情況用不到诸尽。
Fastfile是我們最應(yīng)該關(guān)注的文件原杂,也是我們的工作文件。
- Fastfile的配置
fastlane_version "2.99.1"
default_platform(:ios)
now = Time.new.strftime("%Y_%m_%d_%H_%M_%S")
scheme = "你的項(xiàng)目的scheme"
api_key = "蒲公英賬號(hào)上面的api_key"
user_key = "蒲公英賬號(hào)上面的user_key"
platform :ios do
desc "Description of what the lane does"
#這個(gè)地方的lane:custom_lane你需要特別注意您机,后面執(zhí)行打包的時(shí)候需要用到這個(gè)custom_lane
lane :custom_lane do
gym(
scheme: "#{scheme}",
#輸出的ipa名稱(chēng)
output_name:"#{now} #{scheme}",
# 是否清空以前的編譯信息 true:是
clean:true,
# 指定打包方式穿肄,Release 或者 Debug
configuration:"Release",
# 指定打包所使用的輸出方式,目前支持app-store, package, ad-hoc, enterprise, development
export_method:"development",#這里我只是想打包到蒲公英上面做一個(gè)測(cè)試包际看,所以選擇developement咸产,如果你要發(fā)布到AppStore,你就要選擇app-store
# 指定輸出文件夾
output_directory:"./fastlane/build",
)
puts "開(kāi)始上傳蒲公英"
pgyer(api_key: "#{api_key}", user_key: "#{user_key}")
end
end
- 配置蒲公英插件
要實(shí)現(xiàn)自動(dòng)打包到蒲公英平臺(tái)仲闽,需要給fastlane安裝個(gè)蒲公英插件脑溢,更多配置查看蒲公英文檔$ fastlane add_plugin pgyer
如果未添加蒲公英插件,則后面會(huì)報(bào)錯(cuò)赖欣,說(shuō)找不到pgyer插件
- 執(zhí)行打包
$ fastlane custom_lane desc:測(cè)試打包
出現(xiàn)
就上傳到蒲公英上面成功了屑彻。