score:0

the other answer may no longer be relevant for rn >0.60. be sure to follow the instructions for installation here: https://github.com/react-native-community/react-native-maps/blob/master/docs/installation.md which includes the appdelegate.m changes and the podfile changes. then also add the following line to the top of your podfile.

source 'https://github.com/cocoapods/specs.git'

score:3

if you follow the google map doc and install the sdk manually, you may have add those three frameworks to your project, just right click the framework in xcode and then show in finder, you can find the framework file in finder

enter image description here

enter image description here

and in my case , the replace_me_relative_path_to_google_maps_install refers to my ios directory, the related path is ./ios, just add this to the package.json file and run npm install

{
  "name": "your-app",
  "scripts": {
     "postinstall": "./node_modules/react-native-maps/enable-google-maps ./ios"
  }
}


Related Query

More Query from same tag