AdbLib
AdbLib copied to clipboard
A Java library implementation of the ADB network protocol
Hello @cgutman, I want to backup some files via my developing application. So, I used "sync" connection and opened stream via "RECV". (I want to pull about 40 files in...
Please look at my issue.Thank you very much. Old issure: I am using your adblib, thank you very much for being open source. I met a question and wanted to...
I've seen this on two devices at least, occurs at [AdbProtocol.java#L292](https://github.com/cgutman/AdbLib/blob/d6937951eb98557c76ee2081e383d50886ce109a/src/com/cgutman/adblib/AdbProtocol.java#L292): ``` java.lang.OutOfMemoryError: Failed to allocate a 1598575456 byte allocation with 7544583 free bytes and 248MB until OOM, target footprint...
How can I use this tool to install apk from source (not from destination) like "adb install .apk" when using pc? Is it even possible.
``` public AdbStream open(java.lang.String destination) throws java.io.UnsupportedEncodingException, java.io.IOException, java.lang.InterruptedException Opens an AdbStream object corresponding to the specified destination. This routine will block until the connection completes. Parameters: destination - The...
Thank you very much for open sourcing this project first!!! It is quite pretty and usefull. I want to use this lib to implement the function that can send some...
I know it's possible you have a Ctrl+C send option in the adb app built in, but I was wondering how to send such a command for myself using this...
Just want to let you know that I have created a fork of your library: https://github.com/tananaev/adblib The main reason is to publish it on maven repository to simplify adding it...
Hello I am a newbie in android. There are several question about adblib. 1. In my opinion, communication in one socket connection is sequential, there should be only at most...
Issues arise if this isn't called synchronously. ```java { AdbStream stream = connection.open("shell:uname"); while(!stream.isClosed()) ; } ``` results in an infinite loop, even though the variable is set `true`.