Reputation: 11
I updated my Xcode to version 10, I get the following error.
I updated cocoapods to 1.5.3 and Firebase (and all other pods) to the latest version. Please help me.
Upvotes: 0
Views: 912
Reputation: 3387
Because the pods are created and tested with specific version of Xcode, when a new version of Xcode is released the author of the pods should update the code, perform testing and release a new version. This takes time and probably in your case you need to wait a new version of the pods (last version sometimes doesn't mean compatible with last Xcode) or you can continue to use the previous version of Xcode.
If you want use the last version of Xcode you can check in the Cocoapods website if there is a new version of your pod. If the new version is available use the command (from the main folder of your project)
pod update [name of the pod]
And the pod will be updated. Then recompile your project.
Upvotes: 2