1. fastlane actions 查看所有的指令
2. fastlane actions build_ios_app 查看如何配置打包iOS的每个参数的细节
3. default_platform(:ios) 默认执行哪个action
4. before_all after_all 执行主action之前 和 之后毕走的action,可以用于打包之前执行一些git指令/pod install,打包之后,提交App Store或者是蒲公英
5. .env的用法,主要是用来存放一些信息,相当于一个json文件一样
存值
WORKSPACE="demo.xcworkspace"
SCHEME="demo"
ACCOUNT="zhouyu@gmil.com"
取值 app_identifier ENV['App_Identifier']
6.
网友评论