From 95235d4e5fa8fdfc9588b71763481fc7c0263165 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 1 Dec 2025 16:44:03 +0900 Subject: [PATCH] Fix the file path in adb.js Fix the file path in adb.js --- lib/adb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/adb.js b/lib/adb.js index 1a4d12e..faf8db7 100644 --- a/lib/adb.js +++ b/lib/adb.js @@ -91,7 +91,7 @@ function ADBObject() { }; // set the binary path - this.binPath = SYS.getAppDataDir() + "\\android_platform_tools\\adb.exe"; + this.binPath = SYS.getAppDataDir() + "\\android_platform_tools\\platform-tools\\adb.exe"; this._interface.setPrefix(this.binPath); }