如何隐藏或删除特定pod依赖项的警告?

时间:2017-06-13 06:30:30

标签: swift xcode cocoapods firebase-remote-config

我正在使用Firebase/Remote配置窗格,该窗格取决于名为Protobuf的窗格 其中有很多警告。 我的pod文件

platform :ios, '10.0'

target 'AppeeUITests' do

  use_frameworks!

  pod 'Alamofire', '4.4'
  pod 'SwiftyJSON', '3.1.4'
  pod 'Firebase/Core'
  pod 'Firebase/RemoteConfig'

end

target 'AppeeUITests' do
    inherit! :search_paths
    pod 'Firebase/Core'
    pod 'Firebase/RemoteConfig'
end

target 'AppeeUITests' do
    inherit! :search_paths
end

以下是它产生的警告: enter image description here

2 个答案:

答案 0 :(得分:1)

如果您使用FirebaseRemoteConfig (2.0.0)Protobuf (3.3.0)版本,请不要担心警告。这已经更新,您使用的是最新版本,因此您必须等待Google firebase的下一个版本删除警告,这意味着Firebase团队必须为更新工作。

enter image description here

enter image description here

答案 1 :(得分:0)

应该通过更新你的pod来解决。

更新广告连播的步骤: 1.打开终端并进入您的项目目录 2.运行pod更新'命令

它会更新您的所有pods框架。

如果您收到了未找到的pod命令,请尝试使用' sudo gem install cocoapods'或follow these steps simply