December 2018
Intermediate to advanced
414 pages
10h 19m
English
There are multiple ways to get fastlane installed for your project.
You can use ruby gems:
sudo gem install fastlane
Or you could use Homebrew:
brew cask install fastlane
It is a good practice to use Gemfile, as this will ensure that all the collaborators use the same version of fastlane.
In the root directory, create Gemfile:
source "https://rubygems.org"gem "fastlane"
You will then use bundler-related commands such as the following:
For the rest of this section, we’ll use the fastlane command without the fastlane exec bundle for the sake ...
Read now
Unlock full access