Our project uses "googleapis" pods, which use the "gRPC-Core" module inside. Up until Xcode 16.2, everything was operating smoothly. However, we are encountering an issue with the same code in Xcode 16.3.
Here is the screenshot.
Please let us know if you are experiencing this problem as well as if you know of a solution.
Our project uses "googleapis" pods, which use the "gRPC-Core" module inside. Up until Xcode 16.2, everything was operating smoothly. However, we are encountering an issue with the same code in Xcode 16.3.
Here is the screenshot.
Please let us know if you are experiencing this problem as well as if you know of a solution.
Share Improve this question asked yesterday iDeviDev 5812 gold badges6 silver badges16 bronze badges2 Answers
Reset to default 1This worked for me.
https://github/firebase/firebase-ios-sdk/issues/14643
Basically update firebase to version 11
Try:
Check if there's an updated version of the gRPC-Core pod that addresses this compatibility issue. It might resolve the error.
If updating doesn't work then you may need to manually adjust the code where this error occurs. Make that any use of the template keyword is immediately followed by the appropriate template argument list.
// Your code
Traits::template CallSeqFactory(f_, *cur_, std::move(arg)));
// Revised code
Traits::template CallSeqFactory<>(f_, *cur_, std::move(arg));