archLucifer
archLucifer

Reputation: 389

How do I hide or remove warnings for a specific pod dependency?

I am using the Firebase/Remote config pod and that pod depends on a pod called Protobuf Which has a lot of warnings. My pod file

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

Here are the warnings that it yields: enter image description here

Upvotes: 1

Views: 574

Answers (2)

Salman Ghumsani
Salman Ghumsani

Reputation: 3657

Please don't worry for the warnings if you are using FirebaseRemoteConfig (2.0.0) and Protobuf (3.3.0) version. This is already updated and you are using the latest release, so you have to wait for the next release from Google firebase for removing the warning, it means that Firebase team have to work for the updations.

enter image description here

enter image description here

Upvotes: 2

Pramod Kumar
Pramod Kumar

Reputation: 2652

It should be solved by updating your pod.

Steps to update the pod: 1. open terminal and come to your project directory 2. run 'pod update' command

It'll update your all pods framework.

If you received pod command not found then try using 'sudo gem install cocoapods' or follow these steps simply.

Upvotes: 1

Related Questions