December 2018
Intermediate to advanced
414 pages
10h 19m
English
Now that fastlane is installed on your system, you can run the following:
fastlane init
This will create a folder in fastlane, with many files.
We will focus on the Fastfile located in fastlane/Fastfile. It is in this file that you will declare all your lanes or actions.
Each action is a series of commands, written in Ruby; actions can depend on other actions or invoke plugins.
Now that the required files are created, you can create your first lane:
lane :test do run_tests(scheme: " MyNewProjectTests", devices: ["iPhone XR", "iPhone XS"])end
To run this lane, use the following command:
$ fastlane test
You ...
Read now
Unlock full access