iOS Fastlane Setup

Hasancan Akgündüz
2 min readJan 3, 2021

This is a guideline for installing fastlane on your mac.

1- Install Xcode command line tools:

xcode-select — install

2- Install Homebrew:

3- Install ruby. Ruby is already installed on Mac but I highly recommend to install a new version with brew. Check below links if you encounter any problem:

brew install ruby

4- Install bundler:

5- Install fastlane:

sudo gem install fastlane

6- Run the command below to check if fastlane is installed:

fastlane -v

7- Go to your project’s root directory and run the command below to initialize fastlane in your project.

fastlane init

This will create Gemfile and also a fastlane directory in your project. Now you are ready to create your custom lanes in your Fastfile.

--

--