A Golang library for interacting with adb.
Go to file
Zach Klippenstein cb7e06bdb9 OpenRead will now return an error if the server returns an error when trying to open a file.
All sync status reads now also check for failure status,
using the same logic as the normal Scanner (the only difference
being that for normal scanners, length is encoded as a hex
string, but for sync scanners it's in binary little-endian).
2015-12-28 19:46:14 -08:00
cmd OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
util Added function to build more useful error messages for debugging. 2015-09-05 20:55:20 -07:00
wire OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
.travis.yml Updated go version for travis build. 2015-12-20 23:01:07 -08:00
client_config.go Decoupled clients from each other. 2015-07-11 23:21:10 -07:00
device_client.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
device_client_test.go Add GetDeviceInfo method to DeviceClient. 2015-11-26 11:49:29 -08:00
device_descriptor.go Decoupled clients from each other. 2015-07-11 23:21:10 -07:00
device_info.go Richer error handling. 2015-07-12 00:37:58 -07:00
device_info_test.go Started host and local service clients. 2015-04-12 22:07:12 -07:00
device_watcher.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
device_watcher_test.go DeviceWatcher events are more strongly typed and added higher-level methods. 2015-09-07 21:19:59 -07:00
devicedescriptortype_string.go Started host and local service clients. 2015-04-12 22:07:12 -07:00
devicestate_string.go DeviceWatcher events are more strongly typed and added higher-level methods. 2015-09-07 21:19:59 -07:00
dialer.go If dialing the server fails initially, attempt to start the server and retry. 2015-09-07 16:06:20 -07:00
dir_entries.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
doc.go Started host and local service clients. 2015-04-12 22:07:12 -07:00
host_client.go If dialing the server fails initially, attempt to start the server and retry. 2015-09-07 16:06:20 -07:00
host_client_test.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
LICENSE.txt Initial commit – wire format implementation and some host client commands. 2015-04-11 16:58:49 -07:00
README.md Fixed travis badge to always point to master. 2015-12-28 01:26:11 -08:00
server_controller.go Implemented device event watcher and improved errors. 2015-07-19 12:45:24 -07:00
sync_client.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
sync_client_test.go Richer error handling. 2015-07-12 00:37:58 -07:00
sync_file_reader.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
sync_file_reader_test.go OpenRead will now return an error if the server returns an error when trying to open a file. 2015-12-28 19:46:14 -08:00
util.go Richer error handling. 2015-07-12 00:37:58 -07:00
util_test.go Started host and local service clients. 2015-04-12 22:07:12 -07:00

#goadb

Build Status GoDoc

A Golang library for interacting with the Android Debug Bridge (adb).

See demo.go for usage.