Last active
May 5, 2022 14:55
-
-
Save afflicted-cat/ba4cd6da9d7d4f05da04001428402c62 to your computer and use it in GitHub Desktop.
$ANDROID_SDK_ROOT on MacOS with Fish shell
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
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