Install Library

If you have Homebrew installed, go to next step, else:

If you have Homebrew installed, go to next step, else:

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install node

$ brew install node

Install React Native CLI

$ npm install -g react-native-cli

Go to the project folder and install dependencies

$ cd PROJECT_DIR
$ npm install

Link native modules

$ react-native link
$ cd ios
$ pod install

Install Android SDK http://www.androiddocs.com/sdk/installing/index.htmlarrow-up-right

Set ANROID_HOME on MAC https://stackoverflow.com/questions/19986214/setting-android-home-enviromental-variable-on-mac-os-xarrow-up-right

Set ANDROID_HOME on Windows https://www.360logica.com/blog/how-to-set-path-environmental-variable-for-sdk-in-windows/arrow-up-right

Run Android app

circle-info

Please connect android device or run emulator

Run iOS app

It appears to be a problem with the location of Command line tools. In Xcode, select Xcode menu, then Preferences, then Locations tab. Select your Xcode version from the dropdown and exit Xcode.

Last updated