From 3ca73b9a6f7738c09b269570376e515007b46224 Mon Sep 17 00:00:00 2001 From: mitchell Date: Wed, 10 Aug 2022 15:16:50 -0400 Subject: [PATCH] Add Android global variables --- .config/fish/functions/define_global_variables.fish | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.config/fish/functions/define_global_variables.fish b/.config/fish/functions/define_global_variables.fish index 875eda8..5691a10 100644 --- a/.config/fish/functions/define_global_variables.fish +++ b/.config/fish/functions/define_global_variables.fish @@ -16,7 +16,7 @@ function define_global_variables -d 'Defines all and exclusively globally export 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 \ $HOME/.local/bin \ @@ -25,6 +25,7 @@ function define_global_variables -d 'Defines all and exclusively globally export $HOME/code/flutter/bin \ $HOME/.cargo/bin \ $HOME/.dotnet/tools \ - $ANDROID_SDK_ROOT/emulator \ - $ANDROID_SDK_ROOT/platform-tools + $ANDROID_HOME/emulator \ + $ANDROID_HOME/platform-tools \ + $ANDROID_HOME/tools end