A Golang library for interacting with adb.
Go to file
Zach Klippenstein 64c3235bc2 Merge pull request #18 from zach-klippenstein/devicestate
Make Device.State return DeviceState instead of string.
2016-05-22 08:57:56 -07:00
cmd Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
util Added a Makefile and used for CI. 2016-05-22 08:51:02 -07:00
wire Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
.travis.yml Added a Makefile and used for CI. 2016-05-22 08:51:02 -07:00
adb.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
adb_test.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
device.go Make Device.State return DeviceState instead of string. 2016-05-22 08:54:12 -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 HostClient.ListDevices now returns an empty list instead of nil if there are no devices. 2016-03-13 18:34:06 -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 Make Device.State return DeviceState instead of string. 2016-05-22 08:54:12 -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 Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
device_watcher.go Make Device.State return DeviceState instead of string. 2016-05-22 08:54:12 -07:00
device_watcher_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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 Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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
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 Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
server_mock_test.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
server_test.go Renamed: HostClient -> Adb, DeviceClient -> Device, Server -> server. 2016-05-21 22:33:20 -07:00
sync_client.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
sync_client_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
sync_file_reader.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
sync_file_reader_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
sync_file_writer.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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 Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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.