Hello,when i launch 3 emulator i received error from ListDevices function while in terminal adb devices command working nice.
When i run 2 device there is no like issue
Any help about this problem?
My code for listing devices
client,err := adb.New()
if err != nil {
fmt.Fprintf(os.Stderr, "error New adb: %v\n", err)
return
}
b_devices,err := client.ListDevices()
if err != nil {
fmt.Fprintf(os.Stderr, "error ListDevices adb: %v\n", err)
return
}
received error message
error ListDevices adb: ParseError: error performing ListDevices on *adb.Adb (&{server:0xc0001320f0})

@zach-klippenstein
Hello,when i launch 3 emulator i received error from ListDevices function while in terminal adb devices command working nice.
When i run 2 device there is no like issue
Any help about this problem?
My code for listing devices
received error message
error ListDevices adb: ParseError: error performing ListDevices on *adb.Adb (&{server:0xc0001320f0})@zach-klippenstein