From d03b54f41506bf71b5200ce2ece9d301b9ff719d Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sat, 30 Mar 2024 03:22:25 +0300 Subject: [PATCH] Android : Fix emulator path. --- module/common/bash/module/Android.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/common/bash/module/Android.sh b/module/common/bash/module/Android.sh index a037bd1..4096d4d 100644 --- a/module/common/bash/module/Android.sh +++ b/module/common/bash/module/Android.sh @@ -6,7 +6,7 @@ function emulator() { [[ "${name}" = "" ]] && name="main" - steam-run ${ANDROID_SDK_ROOT}/emulator/emulator -avd "${name}" &> /dev/null & disown + steam-run ~/.android/sdk/emulator/emulator -avd "${name}" &> /dev/null & disown } function _android_emulators() {