Last active
June 15, 2017 12:28
-
-
Save khalid32/192ced61fcd1c5bcf60de7fdbc3bced8 to your computer and use it in GitHub Desktop.
with every new release of React Native, more and more plugins become incompatible and are largely not supported by their authors. So the only option is to continue using previous versions that work with the plugins. All you need to do is to write it on existing project and you are good to go, no double installation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- npm i -S react-native@version | |
//such as, @0.43.3 | |
//and then | |
- react-native upgrade | |
//Alternate Solution | |
//install rninit | |
sudo npm install -g rninit | |
//then react-native project | |
rninit init [Project_Name] --source react-native@version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment