android_swipe
Simulate a swipe or drag gesture on a device screen by specifying start and end coordinates, with an optional duration in milliseconds to automate touch interactions over ADB.
Instructions
Perform a swipe or drag gesture from (x1, y1) to (x2, y2).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x1 | Yes | Starting X coordinate | |
| x2 | Yes | Ending X coordinate | |
| y1 | Yes | Starting Y coordinate | |
| y2 | Yes | Ending Y coordinate | |
| duration_ms | No | Swipe duration in milliseconds (default 300) |