From 89c23138566d8960880ffb5132c7cd4d4d9f237c Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 15 Dec 2016 02:55:38 +0000 Subject: [PATCH] Updated docs for next --- releases/next/docs/getting-started.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/next/docs/getting-started.html b/releases/next/docs/getting-started.html index f449f382e41..cb2e42803c2 100644 --- a/releases/next/docs/getting-started.html +++ b/releases/next/docs/getting-started.html @@ -82,11 +82,11 @@ javac 1.8.

4. Set up the ANDROID_HOME environment variable #

The React Native command line interface requires the ANDROID_HOME environment variable to be set up.

-

Add the following lines to your ~/.bashrc (or equivalent) config file:

export ANDROID_HOME=~/Library/Android/sdk +

Add the following lines to your ~/.bashrc (or equivalent) config file:

export ANDROID_HOME=${HOME}/Library/Android/sdk export PATH=${PATH}:${ANDROID_HOME}/tools export PATH=${PATH}:${ANDROID_HOME}/platform-tools

Please make sure you export the correct path for ANDROID_HOME. If you installed the Android SDK using Homebrew, it would be located at /usr/local/opt/android-sdk.

-

Add the following lines to your ~/.bashrc (or equivalent) config file:

export ANDROID_HOME=~/Android/Sdk +

Add the following lines to your ~/.bashrc (or equivalent) config file:

export ANDROID_HOME=${HOME}/Android/Sdk export PATH=${PATH}:${ANDROID_HOME}/tools export PATH=${PATH}:${ANDROID_HOME}/platform-tools

Please make sure you export the correct path for ANDROID_HOME if you did not install the Android SDK using Android Studio.