Last active
December 17, 2015 19:28
-
-
Save Bucimis/70530c3a43f0d6afe7ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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