mirror of
https://github.com/taigrr/adb.git
synced 2026-04-02 02:58:42 -07:00
34 lines
740 B
Go
34 lines
740 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/taigrr/adb"
|
|
)
|
|
|
|
func main() {
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
|
|
defer cancel()
|
|
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
|
|
}
|
|
fmt.Printf("Begin tapping on device %s now...\n", dev.SerialNo)
|
|
t, err := dev.CaptureSequence(ctx)
|
|
if err != nil {
|
|
fmt.Printf("Error capturing sequence: %v\n", err)
|
|
return
|
|
}
|
|
fmt.Println("Sequence captured, replaying now...")
|
|
dev.ReplayTapSequence(context.TODO(), t)
|
|
}
|
|
}
|