Framework not found GoogleMaps sdk in iOS
I solved my issue
You need to do this
- Click on your project (targets)
- Click on Build Settings
- Under Framework search paths (set your framework path)
Following information for getting framework search paths
- Right click on your framework folder (for ex: GoogleMaps.framework)
- select Get info
- copy the path from General->where and paste this path in your framework search path (path should contain in single line)
Good luck
You can also : - remove GoogleMaps from Podfile - pod install - add GoogleMaps to your Podfile again - pod install
This solution works for me, you can also check the search paths a well.
I encountered a scenario in which I had to import a project that was using Google Maps and noticed the same problem - module: "Google Maps" not found. To solve this problem it was necessary to delete Podfile.lock and Podfile folder and re-install the pods again. Good luck !