admin管理员组文章数量:1344546
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));
本文标签:
版权声明:本文标题:swift - Xcode 16.3 : Facing issue with gRPC-Core pod. "A template argument list is expected after a name prefixed by th 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801354a2541372.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论