JADB

General

Category
Free
Tag
ADB
License
Apache License, Version 2.0
Registered
Jul 25, 2016
Favorites
0
Link
https://github.com/vidstige/jadb
See also
AdbKeyMonkey
adb-export
adbmaster
Captain-ADB
LayoutCast

Additional

Language
Java
Version
v1.2.1 (Mar 5, 2021)
Created
Jul 25, 2013
Updated
May 27, 2022 (Retired)
Owner
Samuel Carlsson (vidstige)
Contributors
Santiago Castro (bryant1410)
Art (SKART1)
Gergő Törcsvári (tg44)
Samuel Carlsson (vidstige)
Jia Chen (fashioncj)
ぎむざ (Giemsa)
danielfriederich
Jari Hämäläinen (nuumio)
Luke Quinane (tmyroadctfig)
Raimund Hocke (RaiMan)
George Pantazes (gwpantazes)
Ernesto Castellotti (ErnyTech)
Muhammad Ikhsan (muhikhsan101)
anthonyflynn
Jano Svitok (janosvitok)
Sander (smieras)
Jeremy Valenzuela (jevalen4868)
dependabot[bot]
Show all (23)23
Activity
Badge
Generate
Download
Source code

JADB

ADB client implemented in pure Java.

The Android Debug Bridge (ADB) is a client-server architecture used to communicate with Android devices (install APKs, debug apps, etc).

The Android SDK Tools are available for the major platforms (Mac, Windows & Linux) and include the adb command line tool which 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"));

Some high level operations such as installing and uninstalling packages are also available.

JadbDevice device = ...
new PackageManager(device).install(new File("/path/to/my.apk"));

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

The description for the protocol for transferring files can be found here: SYNC.TXT.

Using JADB in your application

Since version v1.1 Jadb support maven as a build system. Although this project is not presented in official apache maven repositories this library can be used as dependencies in your maven/gradle project with the help of jitpack. Jitpack is a system which parses github public repositories and make artifacts from them. You only need to add jitpack as a repository to let maven/gradle to search for artifacts in it, like so

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

After that you will need to add actual dependency. Jitpack takes groupId, artifactId and version id from repository name, project name and tag ignoring actual values from pom.xml. So you need to write:

<dependency>
    <groupId>com.github.vidstige</groupId>
    <artifactId>jadb</artifactId>
    <version>v1.2.1</version>
</dependency>

Troubleshooting

If you cannot connect to your device check the following.

  • Your adb server is running by issuing adb start-server
  • You can see the device using adb adb devices

If you see the device in adb but not in jadb please file an issue on https://github.com/vidstige/jadb/.

Workaround for Unix Sockets Adb Server

Install socat and issue the following to forward port 5037 to the unix domain socket.

socat TCP-LISTEN:5037,reuseaddr,fork UNIX-CONNECT:/tmp/5037

Contributing

This project would not be where it is, if it where not for the helpful contributors supporting jadb with pull requests, issue reports, and great ideas. If you would like to contribute, please read through CONTRIBUTING.md.

  • If you fix a bug, try to first create a failing test. Reach out to me for assistance or guidance if needed.

Authors

Samuel Carlsson samuel.carlsson@gmail.com

See contributors for a full list.

License

This project is released under the Apache License Version 2.0, see LICENSE.md for more information.