Cocoapods 未更新到最新版本的 Firebase

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

当我运行

pod update
时,我的所有其他 Pod 都会更新,但 Firebase 仅更新到 8.15.0。 Firebase 目前版本为 10.17.0。这是什么问题?

Podfile.lock:

PODS:
 //...
  - Firebase (8.15.0):
  - GoogleMaps (7.4.0)

Podfile:

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

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

  # Pods for myapp

// ... other pods

pod 'Firebase'
pod 'Firebase/Functions'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'Firebase/Database'
pod 'Firebase/DynamicLinks'
pod 'Firebase/Messaging'
pod 'FirebaseAnalytics'
pod 'FirebaseCrashlytics'
pod 'Firebase/Installations'
pod 'Firebase/AppCheck'

pod 'GeoFire', '~> 4.0'

pod 'GoogleMaps'
pod 'GooglePlaces'
pod 'GoogleSignIn'
pod 'GoogleAnalytics'
pod 'Google-Mobile-Ads-SDK'
pod 'PersonalizedAdConsent'

post_install do |installer|

    installer.pods_project.targets.each do |target|
      if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
        target.build_configurations.each do |config|
            config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
        end
      end
    end
  end
end
ios firebase cocoapods podfile podfile-lock
1个回答
0
投票

我必须将平台从

'14'
更新为
'15'

平台:ios,'15.0'

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