Fix the file path in adb.js

Fix the file path in adb.js
This commit is contained in:
Namhyeon, Go 2025-12-01 16:44:03 +09:00
parent fc7a13ceba
commit 95235d4e5f

View File

@ -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);
}