adbkit icon indicating copy to clipboard operation
adbkit copied to clipboard

A pure Node.js client for the Android Debug Bridge.

Results 73 adbkit issues
Sort by recently updated
recently updated
newest added

``` js // if none of the server is started, this starts a adb server on port 5037 const client = adb.createClient({ port: 5038 }); // this fails to connect...

It seems like the waitForDevice method is not working anymore. It throws an error like so: Unhandled rejection FailError: Failure: 'unknown host service' Anyone had a similar issue ?

Hi! I saw that the [https://www.npmjs.com/package/adbkit-logcat#constants](https://www.npmjs.com/package/adbkit-logcat#constants) has options for priority. Could this be integrated with the `openLogcat` here? Thanks ``` The priority is one of the following character values, ordered...

Hi, From this ADB version 1.0.40/28.0.2-5303910, the public key format has changed by removing the `comment` field, so as a consequence it is no more possible to remote connect to...

Just found this repo, and was thinking through some interesting usages for it and automated testing react native apps. Noticed the call for help for converting from coffeescript. Has anyone...

``` events.js:174 throw er; // Unhandled 'error' event ^ Error: write EPIPE at WriteWrap.onWriteComplete [as oncomplete] (internal/stream_base_commons.js:66:16) Emitted 'error' event at: at Connection._handleError (/Users/drakedan/Documents/tupu/TPOverseer/node_modules/adbkit/lib/adb/connection.js:99:12) at Socket. (/Users/drakedan/Documents/tupu/TPOverseer/node_modules/adbkit/lib/adb/connection.js:53:22) at Socket.emit (events.js:194:15)...

`npm install` fails on Windows since grunt-exec cannot handle paths like `./node_modules/.bin/...` on Windows. This patch makes it work on all three platforms.

I'm trying to extract IMEI number of my device using `client.shell(deviceId, 'service call iphonesubinfo 1`))` but getting some thing like below.. ``` Result: Parcel( 0x00000000: 00000000 0000000f 00350033 00340035 '........3.5.5.4.'...

![image](https://user-images.githubusercontent.com/12374494/47335840-b7215700-d6aa-11e8-875e-30fb590f7bf2.png)

As the subject, I'd like to look for an easier and better-performing way to pull all the files in a directory. Now I used readdir and pull in adbkit: ```javascript...