Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save afflicted-cat/ba4cd6da9d7d4f05da04001428402c62 to your computer and use it in GitHub Desktop.
Save afflicted-cat/ba4cd6da9d7d4f05da04001428402c62 to your computer and use it in GitHub Desktop.
$ANDROID_SDK_ROOT on MacOS with Fish shell
First :
$ touch ~/.config/fish/config.fish; nano ~/.config/fish/config.fish
Copy this in the file :
set --export ANDROID_SDK_ROOT $HOME/Library/Android/sdk;
set -gx PATH $ANDROID_SDK_ROOT/emulator $PATH;
set -gx PATH $ANDROID_SDK_ROOT/platform-tools $PATH;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment