0

I'm trying to not see this warning in the Atlas pod since its not my library.

'UIMutableUserNotificationCategory' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationCategory

I am using

inhibit_all_warnings!

in my pod file.

I also tried pod 'Atlas', '1.1.5', :inhibit_warnings => true which didn't work.

I'm thought if I change the platform from iOS 9 to iOS like this

platform :ios, '9.0'

It would no longer show the warning.

update

-Wno-deprecated worked when I put it in Atlas build settings under complier flags -> c++ flags.

Any way to do this in the podfile? so a pod install will not break it.

user1898829
  • 3,287
  • 6
  • 31
  • 58

1 Answers1

0

Add to your podfile the following statement, and then run pod install

pod 'YourPodToIgnore', :inhibit_warnings => true
Sagar D
  • 3,118
  • 1
  • 17
  • 33