-
-
Save nonaybay/df1aeb3753610d85020cbf454cfb46e7 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/bash | |
PATH="" | |
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games" | |
# android | |
ANDROID_HOME="${HOME}/android/sdk" | |
ANDROID_ROOT=$ANDROID_HOME | |
ANDROID_SDK=$ANDROID_ROOT | |
android_tools="${ANDROID_HOME}/cmdline-tools/tools/bin" | |
android_build_tools="${ANDROID_HOME}/build-tools/33.0.0" | |
android_platform="${ANDROID_HOME}/platform-tools" | |
android_ndk="${ANDROID_HOME}/ndk-bundle" | |
android_path="${android_tools}:${android_build_tools}:${android_platform}:${android_ndk}" | |
export ANDROID_HOME=$ANDROID_HOME | |
export ANDROID_ROOT=$ANDROID_ROOT | |
export ANDROID_SDK=$ANDROID_SDK | |
PATH="${PATH}:${android_path}" | |
export PATH=$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment