fastlane_mac_ios

first: install Xcode command tool
xcode-select --insatall
second: install fastlane
sudo gem install fastlane -NV or brew cask install fastlane
check if success use fastlane --version
three:init
cd the direction to you project then
fastlane init

other user with pgyer
open you terminal then input
fastlane add_plugin pgyer

package ipa....
fastlane "lane" //you config lane in Fastfile file
蒲公英关于fastlane
https://www.pgyer.com/doc/view/fastlane

lan的配置
lane :crt do
gym(
clean:true, #打包前clean项目
export_method: "ad-hoc", #导出方式
scheme:"CRT", #scheme
configuration: "Release",#环境
output_directory:"./app",#ipa的存放目录
)

蒲公英的配置 替换为自己的api_key和user_key

pgyer(api_key: "x x x", user_key: "xxx")
end

关于
Unable to locate Xcode. Please make sure to have Xcode installed on your machine

solve
在Xcode中没有设置“Command Line Tools”:打开Xcode偏好设置,选择"Location"选项卡,选择相应的“Command Line Tools”即可

fastlane.png

你可能感兴趣的:(fastlane_mac_ios)