A Golang library for interacting with adb.
Go to file
Zach Klippenstein 701ea3a245 Moved error definitions to an internal package, deleted the confusing util package.
Public API for error querying and formatting lives in top-level package.
2016-05-22 10:49:34 -07:00
cmd Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
internal/errors Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
wire Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
.travis.yml Added a Makefile and used for CI. 2016-05-22 08:51:02 -07:00
adb.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
adb_test.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
device.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
device_descriptor.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
device_info.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
device_info_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
device_state.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
device_state_test.go Make Device.State return DeviceState instead of string. 2016-05-22 08:54:12 -07:00
device_test.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
device_watcher.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
device_watcher_test.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
devicedescriptortype_string.go Added a Makefile and used for CI. 2016-05-22 08:51:02 -07:00
devicestate_string.go Make Device.State return DeviceState instead of string. 2016-05-22 08:54:12 -07:00
dialer.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
dir_entries.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
doc.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
error.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
LICENSE.txt Initial commit – wire format implementation and some host client commands. 2015-04-11 16:58:49 -07:00
Makefile Added a Makefile and used for CI. 2016-05-22 08:51:02 -07:00
README.md Fixed travis badge to always point to master. 2015-12-28 01:26:11 -08:00
server.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
server_mock_test.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
server_test.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
sync_client.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
sync_client_test.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
sync_file_reader.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
sync_file_reader_test.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
sync_file_writer.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
sync_file_writer_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
util.go Moved error definitions to an internal package, deleted the confusing util package. 2016-05-22 10:49:34 -07:00
util_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00

#goadb

Build Status GoDoc

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

See demo.go for usage.