Reputation: 1093
I came across the same issue in this post here on SO, and the answer mentions that the issue has been resolved since version 0.0.5 of gRPC-C++ has been out, however, I can confirm even after running pod update and my gRPC-C++ is updated to 0.0.7, I still cannot acrhive my project without getting the multiple command produce gRPCCertificates.bundle
error.
Here is my Podfile.lock after the latest pod update
I ran, and here is the Podfile itself.
Full error here:
Upvotes: 0
Views: 102
Reputation: 29582
Remove version locking in the Podfile so that FirebaseFirestore will update to the latest version when you run pod update
:
pod 'Firebase/Firestore'
Upvotes: 1