React Native Maps library
I have problems with installing react native maps library, when I type: npm install react-native-maps --save error shows: react-native-maps error dependencies: "react": "15.3.2", "react-native": "0.36.0"
As Rishabh says, you should upgrade to the latest versions of react, react-native and react-native-maps. Depending on how complex your project is, I often find the easiest way to upgrade is to create a brand new, clean project: react-native init MyProjectName and then install react-native maps (and another other dependencies) npm install --save react-native-maps react-native link and then copy across all your Javascript source code into the new project.
It seems that I had some problems with build.gradle and settings.gradle, corrected those parts and now its working
You can upgrade it to following dependency "react": "15.4.1", "react-native": "^0.39.0" T...