Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pure java adb client [closed]

Tags:

java

android

adb

ADB is split into a server part and a client part that talks to each other via a TCP protocol described more in detail here.

Is there any pure java ADB client out there? This can be very usefull if you want to drive the Packet Manager or Activity Manager from a jUnit or TestNG test case for example.

We have the adb command line client binary on the major development platforms, but is there a pure Java implementaion of the adb client.

like image 594
vidstige Avatar asked Jul 25 '13 14:07

vidstige


1 Answers

I created a small java project called jadb available here that implements parts most of what adb client does, including sending files. It requires the adb server running (the adb binary)

like image 100
vidstige Avatar answered Sep 24 '22 01:09

vidstige