From b3405bf8b5386546d0f3442dc8f4e71c9d18ecb0 Mon Sep 17 00:00:00 2001 From: mitchell Date: Tue, 2 Aug 2022 18:32:00 -0400 Subject: [PATCH] Add Android SDK paths --- .config/fish/functions/define_global_variables.fish | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.config/fish/functions/define_global_variables.fish b/.config/fish/functions/define_global_variables.fish index 4baa317..875eda8 100644 --- a/.config/fish/functions/define_global_variables.fish +++ b/.config/fish/functions/define_global_variables.fish @@ -16,11 +16,15 @@ 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 PATH $PATH $GOBIN \ $HOME/.local/bin \ $HOME/.pub-cache/bin \ $HOME/code/scripts \ $HOME/code/flutter/bin \ $HOME/.cargo/bin \ - $HOME/.dotnet/tools + $HOME/.dotnet/tools \ + $ANDROID_SDK_ROOT/emulator \ + $ANDROID_SDK_ROOT/platform-tools end