Skip to content

Instantly share code, notes, and snippets.

@pawiromitchel
Created July 23, 2019 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pawiromitchel/9a59acc5e235739d7c075769442e2038 to your computer and use it in GitHub Desktop.
Save pawiromitchel/9a59acc5e235739d7c075769442e2038 to your computer and use it in GitHub Desktop.
Automate & Simulate android touches
#!/bin/bash
for i in {1..198}
do
echo "Deleting $i"
# adb shell input tap x y
adb shell input tap 202 418
sleep 1
adb shell input tap 655 111
sleep 1
adb shell input tap 502 739
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment