首页 文章

安装Firebase 2.4.3 cocoapods

提问于
浏览
0

我正在尝试使用cocoapods将Firebase安装到我的项目中 . 我通过添加行修改了pod文件

pod 'Firebase', '>= 2.4.3'

当我输入 pod install 到终端时它会给我一个错误:

[!]无法满足以下要求:Podfile需要Firebase(> = 2.4.3)

我试图取消注释并将全局“平台”指令更改为“platform:ios,'9.0'”,但它没有帮助我,错误仍然存在 .

1 回答

  • -1

    试试这一行:

    pod 'Firebase', '~> 2.4'
    

相关问题