我尝试使用以下命令来解决此问题。
flutter clean
pod install
pod update
pod repo update
pod install --repo-update
每次我收到以下日志。
[!] CocoaPods找不到Pod“ Firebase / CoreOnly”的兼容版本: 在快照(Podfile.lock)中:
Firebase / CoreOnly(= 6.34.0)
在Podfile中:
firebase_core(来自.symlinks/plugins/firebase_core/ios
)已解析为0.5.2,具体取决于
Firebase / CoreOnly(〜> 6.33.0)
您有:
pod repo update
或pod install --repo-update
进行更新。Firebase/CoreOnly
中更改了依赖项firebase_core
的约束。
您应该运行pod update Firebase / CoreOnly`来应用所做的更改。答案 0 :(得分:0)
最后,我发现解决方案只需要删除 Pod文件夹 + Podfile.lock 文件,然后运行应用程序,它将自动降级为适合我的情况 Firebase / CoreOnly(〜> 6.33.0)。