Mina Makhtar
Mina Makhtar

Reputation: 537

React Native : In-app developer menu android (genymotion)

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

Answers (3)

israel
israel

Reputation: 135

if you using metro:

press 'd' on the metro cmd metro cmd

Upvotes: 0

max23_
max23_

Reputation: 6689

Use Ctrl + M (or Command + M if you are running on a Mac) to invoke the In-App Developer Menu.

Upvotes: 3

martinarroyo
martinarroyo

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

Related Questions