From e6934cdb186b84f1dc18b169e8c3703315bd02cb Mon Sep 17 00:00:00 2001 From: Eric Ratliff Date: Tue, 3 Feb 2026 08:40:25 -0600 Subject: [PATCH] fix: Use full path to cmd.exe in Android Studio run configurations Android Studio's Shell Script plugin cannot find cmd.exe when specified as just "cmd.exe" - it doesn't search the system PATH. This caused "Interpreter not found" errors when trying to run Build, Deploy, or Test configurations on Windows. Changed all Windows run configurations to use the full path: C:\Windows\System32\cmd.exe This fixes 5 run configurations: - Build (Windows) - Deploy (auto) (Windows) - Deploy (USB) (Windows) - Deploy (WiFi) (Windows) - Test (Windows) Unix configurations already used full paths (/bin/bash) so they were unaffected. Tested on Windows 11 with Android Studio - configurations now work correctly without manual editing. Fixes issue where users couldn't run any Android Studio configurations on Windows without manually editing the interpreter path. --- src/project/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/project/mod.rs b/src/project/mod.rs index cd5a6a2..9930735 100644 --- a/src/project/mod.rs +++ b/src/project/mod.rs @@ -513,7 +513,7 @@ class BasicTest {