Created
November 20, 2013 18:40
-
-
Save kristopherjohnson/7568583 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
I tried to do this, but still didn't get the right result. Give me a hand
+1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks, it helped me... ^^V