您可以在FastLane FastFile或Lanes中执行循环或迭代(通过设备和语言(?
我需要在每个模拟器启动/结束之前和之后做一些事情。
是的,您可以在fastlane车道中使用任何ruby命令。
所以:
lane :print_images do
images = Dir[File.dirname(some_search_path) + '/*.png']
images.each do |image|
UI.message("found image at: #{image}")
end
end