Reputation: 537
I unable to access the In-App Developer Menu in android(genymotion). Everytime I press the home button, it's not showing the developer menu, and it shift my UI a bit lower which I can't revert it back, unless I kill the app and restart it again. Yes I did check in android module, it is in debug mode.
Upvotes: 2
Views: 3537
Reputation: 6689
Use Ctrl + M (or Command + M if you are running on a Mac) to invoke the In-App Developer Menu.
Upvotes: 3
Reputation: 9701
I usually do the following:
adb shell input keyevent 82
Actually, I defined an alias for it in my .(bash|zsh)rc
:
alias shake='adb shell input keyevent 82'
Upvotes: 8