I'm new to React Native and I'm just starting to learn about it but I noticed from different tutorials that expo has a dev tool that open in web browser which don't work for me.
I'm using expo-cli: version 6.0.2 and 46.0.7.
What should I do to solve this issue.
CodePudding user response:
The way you open developer menu is a bit different depending on where you're running the Expo Go app:
- iOS Device: Shake the device a little bit, or touch 3 fingers to the screen.
- iOS Simulator: Hit
Ctrl Cmd ⌘ Z
on a Mac in the emulator to simulate the shake gesture, or pressCmd ⌘ D
. - Android Device: Shake the device vertically a little bit, or run
adb shell input keyevent 82
in your terminal window if your device is connected via USB. - Android Emulator: Either hit
Cmd ⌘ M
orCtrl M
or runadb shell input keyevent 82
in your terminal window.
Check the expo doc...