Add Android global variables

This commit is contained in:
mitchell 2022-08-10 15:16:50 -04:00
parent b3405bf8b5
commit 3ca73b9a6f
1 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,7 @@ function define_global_variables -d 'Defines all and exclusively globally export
set -gx LIBVIRT_DEFAULT_URI 'qemu:///system' set -gx LIBVIRT_DEFAULT_URI 'qemu:///system'
set -gx ANDROID_SDK_ROOT $HOME/Android/Sdk set -gx ANDROID_HOME $HOME/Android/Sdk
set -gx PATH $PATH $GOBIN \ set -gx PATH $PATH $GOBIN \
$HOME/.local/bin \ $HOME/.local/bin \
@ -25,6 +25,7 @@ function define_global_variables -d 'Defines all and exclusively globally export
$HOME/code/flutter/bin \ $HOME/code/flutter/bin \
$HOME/.cargo/bin \ $HOME/.cargo/bin \
$HOME/.dotnet/tools \ $HOME/.dotnet/tools \
$ANDROID_SDK_ROOT/emulator \ $ANDROID_HOME/emulator \
$ANDROID_SDK_ROOT/platform-tools $ANDROID_HOME/platform-tools \
$ANDROID_HOME/tools
end end