how do I enable Debug JS Remotely in React Native?

Viewed 109

To debug redux, I use React Native Debugger, but for this you need to enable Debug JS Remotely. I don't have this tab in the developer menu. I use redux, redux-toolkit, redux-saga.

photo: https://i.stack.imgur.com/jrX4b.png

3 Answers

Shake your device or pick "Shake Gesture" from the Hardware menu in the iOS Simulator to get to the developer menu. you can check this tutorial here.

Choose Open Debugger option and then inspect the browser webpage and go to the console tab in that

installed the desktop version of flipper with the redux debugger plugin. The problem is solved, albeit in a different way :)

Related