googleads-consent-sdk-ios
googleads-consent-sdk-ios copied to clipboard
UIWebView, deprecated API used
People has started receiving this warning when submitting apps that have references to UIWebView.
ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs.
Anyone resolved this UIWEBVIEW issue with Google Consent SDK?
Affected files: PACView.m PACView.h
Hello
One of my colleagues has a provisional solution if you use POD:
- Enter that in your terminal :
curl -s https://github.com/mimas-technology/googleads-consent-sdk-ios/commit/ed176b2d73048e7a5578631bac6236d70f6e4375.patch -o PersonalizedAdConsent.patch
- After that in your Podfile insert :
post_install do |installer|
puts 'Patching PersonalizedAdConsent'
%x(patch -p1 -d Pods/PersonalizedAdConsent/ < PersonalizedAdConsent.patch)
end
- Run
pod install
Thanks to provisional solution @yannou788 But does anyone know when this repo will fix this issue since The App Store will no longer accept new apps using UIWebView as of April 2020 and app updates using UIWebView as of December 2020. Hope someone fix it soon.
@jweisbaum was this fixed in 5cc10860a9e3edec73264c5fe8a77759b8d11148?