Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fiersk17/254a58c0ba2aadf94ca71f2027ca07c2 to your computer and use it in GitHub Desktop.
Save fiersk17/254a58c0ba2aadf94ca71f2027ca07c2 to your computer and use it in GitHub Desktop.
Bash script to set up ANDROID_SDK_ROOT and PATH for Android tools on Mac OS X with ADT bundle installed
# Setup for use of Android SDK tools from command line
# Set ANDROID_SDK_ROOT to point to the root of the SDK installation
export ANDROID_SDK_ROOT='/Applications/adt-bundle-mac-x86_64-20130729/sdk'
export PATH=$PATH:$ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:$ANDROID_SDK_ROOT/tools/lib/x86_64
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment