I installed the GoogleMaps module using cocoa pods, and the project was built correctly, however, when I transferred my project to another device via iCloud (the project directory is in iCloud), the GoogleMaps module stops working. I tried just running pod install again, but this is a crazy difference, the box is clear there, and the pod installation was successful. I am out of confusion.
First try to clean the project
Command + Shift + Options + K
If I'm not mistaken, the GoogleMaps structure is built from Objective-C, so if there is still a problem, follow these steps:
Configure header search path to specify Pods with recursion
Make a clean assembly.
My fix for me, I had to update my GoogleMaps module.
pod outdated
pod update GoogleMaps
pod cache clean --all
pod install
It works for me:
Delete the Pods folder in your project folder.
Delete podfile.look and pods.xcodeproject (do not delete podfile)
Close X-Code and install pods in your terminal ( pod install )
Open X-Code, clear the project and run.
This worked for me:
pod deintegrate