mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-04 02:09:18 +02:00
feat(adb): support delayed ack
This commit is contained in:
parent
59d78dae20
commit
ac6dc1e57c
9 changed files with 267 additions and 61 deletions
|
@ -35,10 +35,10 @@ export class Cmd extends AdbCommandBase {
|
|||
|
||||
constructor(adb: Adb) {
|
||||
super(adb);
|
||||
this.#supportsShellV2 = adb.supportsFeature(AdbFeature.ShellV2);
|
||||
this.#supportsCmd = adb.supportsFeature(AdbFeature.Cmd);
|
||||
this.#supportsAbb = adb.supportsFeature(AdbFeature.Abb);
|
||||
this.#supportsAbbExec = adb.supportsFeature(AdbFeature.AbbExec);
|
||||
this.#supportsShellV2 = adb.canUseFeature(AdbFeature.ShellV2);
|
||||
this.#supportsCmd = adb.canUseFeature(AdbFeature.Cmd);
|
||||
this.#supportsAbb = adb.canUseFeature(AdbFeature.Abb);
|
||||
this.#supportsAbbExec = adb.canUseFeature(AdbFeature.AbbExec);
|
||||
}
|
||||
|
||||
async spawn(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue