skip to Main Content

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


  1. 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

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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search