How to setup iOs using Carthage

Hi everyone!

Before setup the project make sure it uses Carthage :)

Go to project root folder if you can see Carthage there then everythins is ok.

Make sure the Carthage is already installed on your mac:

  • carthage version

  • if you can see something like that 0.24.0 then everything is ok and you can skip installation step

Install Carthage:

At least two ways to install Carthage:

  • Dowload the latest version of Carthage and run .pkg
  •  using the Homebrew package manager.
    • brew install carthage

If you have done all previouse steps you are ready to setup your iOs project.

For this target you can run in root folder of the project:

carthage update --platform iOS

If you need to build all components without reusing binary use following command:

carthage update --platform iOS --no-use-binaries

Have a good day!