Last active
October 6, 2019 10:04
-
-
Save statickidz/aad18472e94f80fb7e4dd4c58ff68063 to your computer and use it in GitHub Desktop.
ANDROID_HOME and JAVA_HOME environment variable for Mac OSX
This file contains 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
export JAVA_HOME=$(/usr/libexec/java_home) | |
export ANDROID_HOME=/Users/$USER/Library/Android/sdk | |
export ANDROID_SDK_ROOT=/Users/$USER/Library/Android/sdk | |
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
export PATH="$HOME/.fastlane/bin:$PATH" | |
source ~/.nvm/nvm.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment