Skip to content

Instantly share code, notes, and snippets.

@luisfc
Last active October 19, 2025 05:23
Show Gist options
  • Select an option

  • Save luisfc/71475c7a5d09cd7eccac58e4cd26442e to your computer and use it in GitHub Desktop.

Select an option

Save luisfc/71475c7a5d09cd7eccac58e4cd26442e to your computer and use it in GitHub Desktop.
ANDROID_HOME environment variable - fish shell linux
## 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
@Barbosaadev
Copy link

Thanks dude!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment