Home > Mobile >  Is there a way to downgrade React-Native?
Is there a way to downgrade React-Native?

Time:06-29

I have react-native version 0.69.0, but Expo SDK 45 only works with react-native 0.68.2. Is there a way to downgrade my project to this version?

CodePudding user response:

I think this stackoverflow question by 'Sathyakumar Seshachalam' may help you.

link: Proper mechanism to downgrade react-native

Answer from chetan and liamnickell:

For existing projects if you want to install/downgrade to lower version

npm install [email protected] 

This will install the version specified.

Check the installed version with react-native --version

  • Related