13 lines
410 B
Go
13 lines
410 B
Go
/*
|
|
package adb is a Go interface to the Android Debug Bridge (adb).
|
|
|
|
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.
|
|
*/
|
|
package adb
|
|
|
|
// TODO(z): Write method-specific examples.
|