Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics pod is still using UIWebView generating the ITMS-90809: Deprecated API Usage

I recently uploaded an app to TestFlight and I got the following warning from Apple:

ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs. See https://developer.apple.com/documentation/uikit/uiwebview for more information.

Due to I am not directly using any UIWebView at all, I did:

grep -r "UIWebView" .

And the result was:

Binary file ./Pods/Crashlytics/iOS/Crashlytics.framework/Crashlytics matches

I am using Crashlytics (3.13.4) which is the latest one.

like image 468
eMdOS Avatar asked Dec 13 '22 10:12

eMdOS


1 Answers

Run pod update.

Crashlytics 3.14.0 released today with the UIWebView symbols removed to address this issue.

like image 140
Paul Beusterien Avatar answered May 08 '23 15:05

Paul Beusterien