Ati*_*tif 1 ios cocoapods firebase swift
我无法安装Firebase iOS SDK(v3.2.0).我按照Firebase的说明进行操作,但它将安装旧版SDK v2.5.1
Podfile看起来像
platform :ios, '9.0'
target 'FireBaseTestApp' do
use_frameworks!
pod 'Firebase', '>= 2.5.1'
pod 'Firebase/Core'
end
Run Code Online (Sandbox Code Playgroud)
错误
[!]无法满足以下要求:
Firebase/Core 需要的 Podfile您的规范来源都没有包含满足依赖关系的规范:Firebase/Core.
您有:*可以更新的过期源代码库pod repo update.*错误输入了名称或版本.*未将承载Podspec的源代码添加到您的Podfile.
将您的podfile更改为
platform :ios, '9.0'
use_frameworks!
target 'FireBaseTestApp' do
pod 'Firebase'
pod 'Firebase/Database'
end
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
741 次 |
| 最近记录: |