I have been using React Native for the past 4 of months working both on Android and IOS. According to React Native Docs there will be an updated version of React Native every month. So, I keep updating it every month which is good, but the problem is I am using a couple of npm packages which is getting outdated due to react-native
update which in-turn causes errors in my project.
For Android, we can lock the react-native
version by specifying the version number in gradle. And for the Javascript part we can lock it in package.json
. But for IOS I am not able to find anything like that.
So, is there way to lock the react-native
version in IOS xcode?