1.0.4 • Published 1 year ago

game-adb v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

game-adb

Introduction

game-adb is an easy-to-use adb library for making automated game software

Installation

// with npm
npm install game-adb

// with yarn
yarn add game-adb

Usage

Create adb client and get device

import { createAdb } from "game-adb";

(async () => {
  const adb = await createAdb(path/to/adb);
  const device = adb.devices.find((d) => d.serialNumber === "emulator-5554");
  if (device) {
    // code
  }
})()

Please view the contents of the "test" folder in packages for more usage instructions

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago