2015-04-12 20:34:20 +00:00
|
|
|
/*
|
2016-01-15 15:54:27 +00:00
|
|
|
package adb is a Go interface to the Android Debug Bridge (adb).
|
2015-04-12 20:34:20 +00:00
|
|
|
|
|
|
|
See cmd/demo/demo.go for an example of how to use this library.
|
|
|
|
|
|
|
|
The client/server spec is defined at https://android.googlesource.com/platform/system/core/+/master/adb/OVERVIEW.TXT.
|
|
|
|
|
|
|
|
WARNING This library is under heavy development, and its API is likely to change without notice.
|
|
|
|
*/
|
2016-01-15 15:54:27 +00:00
|
|
|
package adb
|
2015-04-12 20:34:20 +00:00
|
|
|
|
|
|
|
// TODO(z): Write method-specific examples.
|