I've been having trouble getting the standalone React Native Debugger to work. I'm running an expo project and testing on android device. When I select Debug Remote JS, it opens up http://localhost:19000/debugger-ui/ in my web browser each time. My standalone debugger on port 19000 just says Waiting for React to connect. Not seeing any errors anywhere.
Asked
Active
Viewed 513 times
1 Answers
0
- Make sure the device is connected via adb
adb devices
- if you see your device, please run this command
adb reverse tcp:8097 tcp:8097
- and restart your debugger

Yasin Tazeoglu
- 884
- 8
- 14
-
I don't see the device under adb devices. I'm currently running Ubuntu in WSL and connected to the device via expo and wifi – Brian Yang Dec 27 '21 at 21:23