diff --git a/lib/adb.js b/lib/adb.js index 57b4d75..1a4d12e 100644 --- a/lib/adb.js +++ b/lib/adb.js @@ -1,5 +1,5 @@ // adb.js -// Copyright 2019-2025, Namhyeon Go and the WelsonJS contributors. +// Namhyeon Go and the Catswords OSS contributors. // SPDX-License-Identifier: GPL-3.0-or-later // https://github.com/gnh1201/welsonjs // @@ -91,7 +91,7 @@ function ADBObject() { }; // set the binary path - this.binPath = "bin\\platform-tools_r33.0.0-windows\\platform-tools\\adb.exe"; + this.binPath = SYS.getAppDataDir() + "\\android_platform_tools\\adb.exe"; this._interface.setPrefix(this.binPath); } @@ -133,7 +133,7 @@ exports.createEmulator = function(binPath) { return new EmulatorObject(binPath); }; -exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.2.2"; +exports.VERSIONINFO = "Android Debug Bridge Interface (adb.js) version 0.2.3"; exports.AUTHOR = "gnh1201@catswords.re.kr"; exports.global = global; exports.require = global.require;