I have installed the \'GoogleMaps\' pod using cocoa pods and the project was building correctly, however when I transferred my project to another device through iCloud (the proj
for me, all i did is :
pod install
then use new version on disk
It works for me:
Delete folder Pods in your project folder.
Delete file podfile.look and pods.xcodeproject (not delete podfile)
Close X-Code and install pods in your terminal (pod install
)
Open X-Code, clean the project and run.
try to comment pod GoogleMaps
and another google pod on your podfile then run pod instal from terminal this will remove your pod install from your project, back to you project on pod file remove your commented pods and run pod install
from terminal one more time, go to your xcode project clean and run this will be work with you.
First off try to clean the project by
Command + Shift + Options + K
If I'm not mistaken, GoogleMaps framework is built from Objective-C so if there's still a problem then do the following steps:
Configure the header search path to point the Pods with recursion
Do a clean-build.
For me to fix mine, I had to update my GoogleMaps pod.
pod outdated
pod update GoogleMaps
pod cache clean --all
(or you can specify GoogleMaps)pod install
This worked for me:
pod deintegrate
)pod cache clean --all
)pod install
)