我正在尝试更新广告连播,我通过
列出了广告连播更新pod outdated
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 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.
答案 0 :(得分:1)
另一个依赖项要求FirebaseAuth
为较低版本。请参阅Podfile.lock
以获取详细信息。
请注意,您想更新FirebaseAuth
窗格中的Firebase/Auth
窗格-而不是Auth
的{{1}}子规范。
这可能与将Firebase
吊舱锁定到旧版本有关。