And how to emulate a command adb start-server?
adbClient, err := gadb.NewClient()
fmt.Println(err) // adb transport: dial tcp [::1]:5037: connect: connection refused
If run adb start-server through the official adb before that, then a connection request occurs and then everything works.
But the goal of the project is to completely replace the official adb, isn't it?
And how to emulate a command
adb start-server?If run
adb start-serverthrough the officialadbbefore that, then a connection request occurs and then everything works.But the goal of the project is to completely replace the official
adb, isn't it?