5

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.

Oleg
  • 51
  • 3

2 Answers2

3

Same issue. I found this solution and it works for me

app.json configuration

"jsEngine": "hermes",
"ios": {
   "jsEngine": "jsc",
   "supportsTablet": true
},

and run project with npx expo start --localhost command

source: https://github.com/jhen0409/react-native-debugger/issues/754#issuecomment-1469852938

2

I can confirm that adding "jsEngine": "jsc" in the app.json under "android" and "ios", then RND will start working again.

Nhat Nguyen
  • 410
  • 1
  • 7
  • 7