Pure java adb client [closed]

2019-04-09 01:50发布

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.

标签: java android adb
1条回答
聊天终结者
2楼-- · 2019-04-09 02:10

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)

查看更多
登录 后发表回答