13 lines
414 B
Go
13 lines
414 B
Go
|
/*
|
||
|
Package goadb 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 goadb
|
||
|
|
||
|
// TODO(z): Write method-specific examples.
|