ADB Client in pure Java.
Go to file
2016-03-02 21:14:32 +01:00
.idea Switching back to JDK 1.6 2016-03-02 20:43:15 +01:00
lib reuseable jadbDevices and the shell command returns a string 2016-02-28 03:04:59 +01:00
META-INF Adding jar artifact 2014-04-02 19:44:28 +02:00
src/se/vidstige/jadb Refactor: Avoids having stale transport lingering around. 2016-03-02 21:14:32 +01:00
test/se/vidstige/jadb/test Using streams rather than byte arrays. 2016-03-02 21:06:19 +01:00
.classpath Adding Eclipse project file and classpath 2013-07-26 09:09:00 +02:00
.gitattributes Initial commit 2013-07-25 20:45:28 +02:00
.gitignore Build: Ignoring files created by tests 2016-03-02 21:07:36 +01:00
.project Adding Eclipse project file and classpath 2013-07-26 09:09:00 +02:00
jadb.iml Build: Checking in JUnit4. 2014-03-21 19:38:21 +01:00
LICENSE.md Adding the Apache 2.0 license 2014-02-24 07:53:11 +01:00
README.md Updating documentation with an example. 2014-03-20 21:35:36 +01:00

#JADB# ADB client implemented in pure Java.

The Android Debug Bridge or ADB for short it a client-server architecture used to install android apps from an IDE or command line and to debug apps, etc.

The Android SDK Tools is available for the major platforms (Mac, Windows & Linux) and in there is a command line tool called adb that implements the ADB protocol.

This projects aims at providing an up to date implementation of the ADB protocol.

Example

Usage cannot be simpler. Just create a JadbConnection and off you go.

JadbConnection jadb = new JadbConnection();
List<JadbDevice> devices = jadb.getDevices();

Make sure the adb server is running. You can start it by running adb once from the command line.

It's very easy to send and receive files from your android device, for example as below.

JadbDevice device = ...
device.pull(new RemoteFile("/path/to/file.txt"), new File("file.txt"));

Protocol Description

An overview of the protocol can be found here: Overview

A list of the available commands that a ADB Server may accept can be found here: Services

Author

Samuel Carlsson samuel.carlsson@gmai.com