Ahmad Mustafa
Ahmad Mustafa

Reputation: 531

How to Ignore warnings when using new Podfile in swift?

Hello I implement different library from cocoapod and install Podfile

but I want to ignore the warnings

Upvotes: 0

Views: 192

Answers (1)

Dhaval Raval
Dhaval Raval

Reputation: 594

# example to ignore all warnings from all pods
inhibit_all_warnings!

# example to ignore warnings from a specific pod
pod 'Alamofire', :inhibit_warnings => true

you have to add this line in your podfile.

Upvotes: 1

Related Questions