Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreztz/f2cd9f5d5c92c4dd2985078acb50f264 to your computer and use it in GitHub Desktop.
Save andreztz/f2cd9f5d5c92c4dd2985078acb50f264 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