Skip to content

Instantly share code, notes, and snippets.

@madhankumardroid
Created July 14, 2018 16:49
Show Gist options
  • Save madhankumardroid/1ca3e08d2a56f79241e168c04edda708 to your computer and use it in GitHub Desktop.
Save madhankumardroid/1ca3e08d2a56f79241e168c04edda708 to your computer and use it in GitHub Desktop.
Open Terminal and type in..
nano ~/.bash_profile
Add the below paths
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
Type source $HOME/.bash_profile to load the config into your current shell. Verify that ANDROID_HOME has been added to your path by running echo $PATH.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment