Skip to content

Instantly share code, notes, and snippets.

@Bucimis
Last active December 17, 2015 19:28
Show Gist options
  • Save Bucimis/70530c3a43f0d6afe7ea to your computer and use it in GitHub Desktop.
Save Bucimis/70530c3a43f0d6afe7ea to your computer and use it in GitHub Desktop.
# uninstall droidboy
adb uninstall com.appboy.sample
# start droidboy
adb shell monkey -p com.appboy.sample -c android.intent.category.LAUNCHER 1
# press home key
adb shell input keyevent 3
# open sqlite database
sqlite3 data/data/com.appboy.sample/databases/appboy.db
# broadcast boot complete
adb shell am broadcast -a android.intent.action.BOOT_COMPLETED;
# uninstall-install-start cycle
adb uninstall com.appboy.sample; ./gradlew installAndroidDebug; adb shell monkey -p com.appboy.sample -c android.intent.category.LAUNCHER 1;
# list genymotion VMs
VBoxManage list vms
# start a genymotion VM
/Applications/Genymotion.app/Contents/MacOS/player --vm-name "name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment