pod“Firebase/Core”、“11.5.0”无法正常工作

问题描述 投票:0回答:1

任何人都可以指出我做错了什么吗?

  • Xcode - 版本 15.3
  • iOS - 索诺玛版本 14.5,苹果 M3Max
  • cocoapods - 版本 1.15.2

下面是 pod 文件。

# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'

target 'connectdots' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for connectdots
  pod ‘Firebase/Core’, '11.5.0'
  pod ‘Firebase/AdMob’, '11.5.0'
  
end

下面是我运行时遇到的错误

pod install --repo update

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

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

You have either:
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.

Firebase/Core 和 Firebase/AdMob 需要更新到最新版本

我尝试了在互联网上找到的其他一些解决方案,但没有任何解决方案可以解决我的问题。

firebase cocoapods
1个回答
0
投票

  pod 'FirebaseAnalytics', '10.27.0'
  pod 'Google-Mobile-Ads-SDK', '11.5.0'

Firebase 的最新版本是 10.27.0

AdMob 不再是 Firebase 的子规范。

© www.soinside.com 2019 - 2024. All rights reserved.