A Golang library for interacting with adb.
Go to file
Zach Klippenstein 3d9104fbc1 Merge pull request #14 from zach-klippenstein/format-flags
[cmd/adb] Formatted flag definitions.
2016-05-07 18:46:53 -07:00
cmd [cmd/adb] Formatted flag definitions. 2016-05-07 18:41:49 -07:00
util Fixed a potential NPE when printing error cause chains. 2015-12-30 01:58:06 -08:00
wire Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
.travis.yml [cmd/adb] Formatted flag definitions. 2016-05-07 18:41:49 -07:00
device_client.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
device_client_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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_watcher.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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 Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
devicestate_string.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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
host_client.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
host_client_test.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
README.md Fixed travis badge to always point to master. 2015-12-28 01:26:11 -08:00
server.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
server_mock_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08:00
server_test.go Renamed top-level package from goadb to just adb. 2016-01-15 07:54:27 -08: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.