0

Hello I implement different library from cocoapod and install Podfile

but I want to ignore the warnings

Ahmad Mustafa
  • 381
  • 1
  • 2
  • 11

1 Answers1

1
# 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.

Dhaval Raval
  • 539
  • 2
  • 7