ADB Client in pure Java.
Go to file
Samuel Carlsson 2a3c51dc85 Adding the Apache 2.0 license 2014-02-24 07:53:11 +01:00
src/se/vidstige/jadb Method signature for push 2013-07-26 15:34:10 +02:00
test/se/vidstige/jadb/test Friday hacking. Over-and-out 2013-07-26 16:49:12 +02: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 Adding Eclipse project file and classpath 2013-07-26 09:09:00 +02:00
.project Adding Eclipse project file and classpath 2013-07-26 09:09:00 +02:00
LICENSE.md Adding the Apache 2.0 license 2014-02-24 07:53:11 +01:00
README.md Removing irrelevant code from the example. 2013-07-25 23:36:59 +02:00

README.md

#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<AndroidDevice> actual = jadb.getDevices();

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