FaSTLane文件如下所示
lane :build do |options|
scheme = options[:scheme]
puts scheme
end
但是,每当我在其中传递任何值时,
puts
的输出均为变为空白。我正在从终端拨打这样的快速通道:-
fastlane build options:Release
最佳答案
在上面的示例中,您将需要运行:fastlane build scheme:Release
以按照您的期望输出Release
。options
是参数的字典,以及在命令中:scheme
之后提供的参数的scheme
键。
关于faSTLane - 从faSTLane参数获取参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48960262/