tap and swipe replay works

This commit is contained in:
2022-08-02 23:12:35 -07:00
parent cab458ce53
commit 3e348641d8
4 changed files with 84 additions and 14 deletions

View File

@@ -0,0 +1,35 @@
package main
import (
"context"
"fmt"
"github.com/taigrr/adb"
)
var command string
func init() {
// TODO allow for any input to be used as the command
command = "ls"
}
func main() {
ctx := context.TODO()
devs, err := adb.Devices(ctx)
if err != nil {
fmt.Printf("Error enumerating devices: %v\n", err)
return
}
for _, dev := range devs {
if !dev.IsAuthorized {
fmt.Printf("Dev `%s` is not authorized, authorize it to continue.\n", dev.SerialNo)
continue
}
err := dev.GoHome(ctx)
if err != nil {
// handle error here
fmt.Printf("Error: %v\n", err)
}
}
}