Last active
April 6, 2025 07:42
-
-
Save luisfc/71475c7a5d09cd7eccac58e4cd26442e to your computer and use it in GitHub Desktop.
ANDROID_HOME environment variable - fish shell linux
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
## Android | |
set --export ANDROID_HOME $HOME/Android/Sdk | |
set -gx PATH $ANDROID_HOME/emulator $PATH; | |
set -gx PATH $ANDROID_HOME/tools $PATH; | |
set -gx PATH $ANDROID_HOME/tools/bin $PATH; | |
set -gx PATH $ANDROID_HOME/platform-tools $PATH; | |
# When finished run: source ~/.config/fish/config.fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much!
this real helped!