WTFAQ?

xcode

was encountering this issue earlier on, would like to share how I found and fix the issue.
Chances are your GoogleMaps dependency is not installed properly during pod install process, which you can verify by tapping on the “Pods” project within your Xcode, then expand “Pods > GoogleMaps”, you should see a few folders and files under GoogleMaps. If you don’t, that means it’s not installed properly.
I then updated my Podfile to replace pod ‘GoogleMaps’, ‘2.5.0’ to pod ‘GoogleMaps’ – remove the fixed version, which will install latest one, v2.7.0 as of this comment date. Then I did these:
1 pod repo update
2 pod install
3 clean the project and re-build again.
hope it helps.

— Was this helpful? · 👍 · 👎 —