DEV Community

Discussion on: How to fix React Native version mismatch

Collapse
 
khajanizamuddin1 profile image
Khaja Nizamuddin

Javascript was one version behind the installed native version,

So, I changed the sdk version to just 1 behind Changed this line in my package.json "react-native": "github.com/expo/react-native/archi...",

to "react-native": "github.com/expo/react-native/archi...",

and saved the file, and app started working (Didn't even restart the app)

Collapse
 
takunda profile image
Takunda Madechangu

That's great man.