I am trying to login with Firebase Google Login. After installing the pods when i import header file
‘GoogleSignIn’ it gives me an error.
No such module ‘GoogleSignIn’
Here is my pod file
I also tried different troubleshoot methods like
- update pods
- Restarted Xcode
But none of methods did work for me. How i fix this issue
2
Answers
Maybe you can fix that by cleaning the build with cmd+shift+k and removing the derived data(xcode->preferences->location->derived_data_folder and remove the derived data folder).
If the above process didn’t work then reinstall the pods.
I think @muhammad-qais answer will work. If not try removing the text "pod ‘GoogleSignIn’, ‘~> 3.0’ " in podfile.
Then pod install. It removes the existing google Sign in pod.
And then install google sign in Pod from cocoapods.org as usual.
Hope it works.