Home > OS >  Expo developer tools option is missing
Expo developer tools option is missing

Time:05-19

When I start my project using command expo start , Expo is starting the Metro bundler but not opening the developer tool. Also developer tool option is not available in commands menu.

enter image description here

I suppose there should be command option : 'd' which will launch the developer tool on the localhost:19002 but it's not coming for me.

Using expo cli version 5.4.4

CodePudding user response:

If you're using a library such as react-navigation or anything (or itself) the relies on reanimated you won't be able to use remote debugging. https://docs.expo.dev/versions/latest/sdk/reanimated/

CodePudding user response:

After changing the expo sdk version from 45.0.4 to 44.0.6, I am able to see the Developer tools running on http://localhost:19002.

  • Related