Forked from kristopherjohnson/configure_android_sdk.sh
Created
April 23, 2017 07:34
-
-
Save jeeteshnariya/b0ac74b4c2115081e6c14fde4d91f060 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment