I can’t run React Native Debugger from Android Studio< Expo SDK 48. There is no Debug Remote JS item in the developer menu, but I have the Open JS Debugger item. When I select it, Devtools is revealed. But in React Native Debugger my device not connected on my port 19000.
Im read documentation and install many librarys and not working yet.
2
Answers
Same issue. I found this solution and it works for me
app.json configuration
and run project with
npx expo start --localhost
commandsource: https://github.com/jhen0409/react-native-debugger/issues/754#issuecomment-1469852938
I can confirm that adding
"jsEngine": "jsc"
in theapp.json
under"android"
and"ios"
, then RND will start working again.