Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 cocoapods 将 Firebase 安装到我的项目中。我通过添加行修改了 pod 文件
pod 'Firebase', '>= 2.4.3'
当我输入pod install终端时,它给了我一个错误:
pod install
[!] 无法满足以下要求: Firebase (>= 2.4.3)要求Podfile
[!] 无法满足以下要求:
Firebase (>= 2.4.3)
Podfile
我试图取消注释并将全局“平台”指令更改为“平台:ios,'9.0'”,但这对我没有帮助,错误仍然存在。
试试这一行:
pod 'Firebase', '~> 2.4'