Pod 安装中出错:CocoaPods 找不到 Pod "FirebaseFirestore" 的兼容版本


elamparithibalakrishnan@MacBook-Pro-3 ios % pod install    
Analyzing dependencies
Pre-downloading: `FirebaseFirestore` from `https://github.com/invertase/firestore-ios-sdk-frameworks.git`, tag `7.3.0`
cloud_firestore: Using Firebase SDK version '8.0.0' defined in 'firebase_core'
firebase_core: Using Firebase SDK version '8.0.0' defined in 'firebase_core'
[!] CocoaPods could not find compatible versions for pod "FirebaseFirestore":
In Podfile:
FirebaseFirestore (from `https://github.com/invertase/firestore-ios-sdk-frameworks.git`, tag `7.3.0`)
cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) was resolved to 2.2.1, which depends on
Firebase/Firestore (= 8.0.0) was resolved to 8.0.0, which depends on
FirebaseFirestore (~> 8.0.0)

我得到这个错误时,我执行pod安装命令,我删除了podfile。锁文件并执行命令,但这显示了Firebase的错误。

在这个问题上有人能帮我吗?谢谢。

这个问题已经解决了,我只是将标签更改为8.0.0

pod 'FirebaseFirestore', :git => 'https://github.com/invertase/firestore-ios-sdk-frameworks.git', :tag => '8.0.0'

最新更新