Skip to content

Instantly share code, notes, and snippets.

@caarmen
Created June 3, 2016 09:17
Show Gist options
  • Save caarmen/ba48bb0c809022f80380dcfb439fbf71 to your computer and use it in GitHub Desktop.
Save caarmen/ba48bb0c809022f80380dcfb439fbf71 to your computer and use it in GitHub Desktop.
Rotate genymotion in a loop
x=0
while [ 1 ]
do
x=`expr \( $x + 90 \) % 360 `
/Applications/Genymotion\ Shell.app/Contents/MacOS/genyshell -c "rotation setangle $x"
sleep 1
done
@caarmen
Copy link
Author

caarmen commented Jun 3, 2016

Then use this command to run monkey on your app:

adb -e shell monkey -p com.mycompany.myapp --ignore-crashes --ignore-timeouts -vvv 100000 > /tmp/monkey.log 2>&1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment