3

How to solve this error ?

My Podfile looks like this :

  pod 'Firebase/Core'
  pod 'Firebase/Auth'
  pod 'GoogleSignIn'
end
Gereon
  • 17,258
  • 4
  • 42
  • 73
SI M
  • 41
  • 1
  • 2
  • Check the below link *https://stackoverflow.com/a/72813307/14266627* it's a version problem – Salman Jun 30 '22 at 09:24

1 Answers1

5

First step, you could check if the pod repo needs an update. Use the below command to update :

pod repo update

Post that, try deleting "Podfile.lock" file and "Pods" folder inside your project directory. And then run the below commands in sequence :

pod deintegrate
 
pod install
 
pod update
Girish K T
  • 73
  • 7
  • I have a question! What does actually 'pod repo update' work for? – SI M Feb 12 '21 at 01:45
  • Please check this stack overflow post for your question on pod repo update : https://stackoverflow.com/questions/43701352/what-exactly-does-pod-repo-update-do#:~:text=As%20per%20the%20documentation%20pod,of%20the%20spec%2Drepo%20NAME.&text=By%20running%20pod%20repo%20update,can%20continue%20to%20install%20it. – Girish K T Feb 12 '21 at 08:52