From b568cb6999f4be09c237ef2be26687cfdc9dbab6 Mon Sep 17 00:00:00 2001 From: Gabriel Elkind Date: Sat, 1 Jul 2017 17:29:21 -0500 Subject: [PATCH] On OSX, the path to the cli tools seem to be in `$ANDROID_HOME/tools/bin`, not `$ANDROID_HOME/tools` --- docs/GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index ea74edad0b4aa5..e4447fd6baf7e4 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -400,7 +400,7 @@ Add the following lines to your `$HOME/.bash_profile` config file: ``` export ANDROID_HOME=$HOME/Library/Android/sdk -export PATH=$PATH:$ANDROID_HOME/tools +export PATH=$PATH:$ANDROID_HOME/tools/bin export PATH=$PATH:$ANDROID_HOME/platform-tools ```