Skip to content

direct communicate with adb daemon, fuck off adb shell, fuck off adb server

Notifications You must be signed in to change notification settings

striver-ing/adbs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 

Repository files navigation

adbs

communicate with adb daemon

demo

DefaultAdbDevice device = SocketAdbDevice.connect("127.0.0.1", 5555);
device.shell("ls", "-l", "/sdcard").addListener(f -> {
    if (f.cause() != null) {
        f.cause().printStacktrace();
    } else{
        System.out.println((String)f.getNow());
    }
});

About

direct communicate with adb daemon, fuck off adb shell, fuck off adb server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages