当前位置: 首页 > 工具软件 > fastlane > 使用案例 >

fastlane 上传到蒲公英和Fir 配置

訾渝
2023-12-01

一.fastlane安装完成后,相应工程目录下fastlane init
二.安装插件
1.蒲公英

fastlane add_plugin pgyer

2.fir

fastlane add_plugin versioning
fastlane add_plugin firim

三.更改配置文件Fastfile

default_platform(:ios)

platform :ios do
  desc "Update Project"
  lane :pgy do
	build_app(export_method: "ad-hoc")
    pgyer(api_key: "xxx", user_key: "xxx")
  end
  lane :fir do
	build_app(export_method: "ad-hoc")
    firim(firim_api_token: "xxx")
  end
end

注意:
1.蒲公英的api_key和user_key相对容易找到,官网也有fastlane配置说明;fir的token在简介里API_Token
2.lane的名字不要和方法名相同(譬如pgyer和firim),这样会循环打包。。

 类似资料: