regulaforensics / DocumentReader-iOS

iOS Framework for reading and validation of identification documents
58 stars 15 forks source link

[BR] TMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. #66

Closed MoElnaggar14 closed 3 months ago

MoElnaggar14 commented 1 year ago

Before Submitting, be sure to

Bug Description TMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).

when we execute grep -r "UIWebView" . we get the match from the pod

image

Steps To Reproduce

Expected behavior

Screenshots

Environment:

Additional context

vyakimchik commented 3 months ago

Hi @MoElnaggar14,

.dSYM files don't contain any functional code. This is debugging metadata. The reason why you've found this mention of UIWebView in our dSYM files is because we link to UIKit and the version of iOS that may include UIWebView.

UIWebView don't exist in our frameworks that can be confirmed by running the following command:

nm /DocumentReader.framework/DocumentReader | grep -i UIWebView

This returns no results. We deliver apps to TestFlight and App Store and haven't come across this warning ourselves.