Cocoapods Firebase pod 更新

Yve*_*ler 2 unity-game-engine cocoapods firebase podspec

早上好,我在更新 Firebase/Analytics 和 Firebase/Core pod 时遇到问题。

我的播客文件:

source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/CocoaPods/Specs'
platform :ios, '10.0'

target 'Unity-iPhone' do
pod 'Firebase/Analytics', '5.15.0'
pod 'Firebase/Core', '5.15.0'
pod 'Firebase/Messaging', '5.1.0'
pod 'GoogleAppMeasurement', '5.3.0'
pod 'Google-Mobile-Ads-SDK', '~> 7.0'
end
Run Code Online (Sandbox Code Playgroud)

如果我运行,pod install我会得到以下输出

Analyzing dependencies

[!] CocoaPods could not find compatible versions for pod "Firebase/Analytics":
  In Podfile:
    Firebase/Analytics (= 5.15.0)

None of your spec sources contain a spec satisfying the dependency: `Firebase/Analytics (= 5.15.0)`.

You have either:
 * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`.
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.

Note: as of CocoaPods 1.0, `pod repo update` does not happen on `pod install` by default.
Run Code Online (Sandbox Code Playgroud)

pod outdated<code>pod 过时</code>

所以我运行pod update所以我运行 <code>pod update</code>

但是“Firebase/Analytics”仍然保留在 5.1.0 版本中,我错在哪里?我已经多次尝试安装 repo master 和 gem

qtn*_*ngo 7

正如消息所说,您应该先做,pod repo update然后再做pod update。希望这可以帮助。