吊舱尚未更新,即使它显示可以通过“过时的吊舱”进行更新

时间:2019-11-06 09:13:16

标签: ios firebase cocoapods pod

我正在尝试更新广告连播,我通过

列出了广告连播更新
pod outdated

enter image description here

podfile (此外,我什至尝试'Firebase/Auth', '6.3.1' in podfile指定版本,但没有使用[“-” 代替应用程序NDA -_-])

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


def extension_pod
#   pod 'ReadabilityKit', '0.7.1'
    pod 'SDWebImage', '~> 4.0'
    pod 'Firebase'
    pod 'Firebase/Database'
    pod 'Firebase/Auth'
    pod 'FirebaseUI/Database'
    pod 'Firebase/Storage'
    pod 'Firebase/Core'

end

target '-' do

extension_pod
pod 'LGSideMenuController'
pod 'Firebase/MLVision'
pod 'Firebase/MLVisionTextModel'
#pod 'FirebaseUI', '~> 5.0'
pod 'Firebase/Messaging'
pod 'TOCropViewController'
# [START google_pod]
pod 'GoogleSignIn', '4.1.2'
pod 'ARSLineProgress'
#pod 'TesseractOCRiOS', '4.0.0'
# [END google_pod]
pod 'TwitterKit'
pod 'DateTools'
pod 'Fabric'

  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for -

  target '-Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target '-UITests' do
    inherit! :search_paths
    # Pods for testing
  end

  target '-E' do

      extension_pod

      end

end

到目前为止,我已经执行了一些命令来更新我的Firebase/Auth存储库,

  • pod更新“ Firebase”
  • pod更新“ Firebase / Auth”
  • pod安装--no-repo-update
  • pod repo更新&& pod更新'Firebase / Auth'

所有这些都显示如下,但没有更新为pod outdated所示的特定版本,我是否缺少执行更新过程的命令?

Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project
Pod installation complete! There are 17 dependencies from the Podfile and 33 total pods installed.

1 个答案:

答案 0 :(得分:1)

另一个依赖项要求FirebaseAuth为较低版本。请参阅Podfile.lock以获取详细信息。

请注意,您想更新FirebaseAuth窗格中的Firebase/Auth窗格-而不是Auth的{​​{1}}子规范。

这可能与将Firebase吊舱锁定到旧版本有关。

相关问题