UnityAds has UIWebView it’s been deprecated by Apple since iOS 10.0. When submitting to App Store it’ll complain in App Connect about using a deprecated API.
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
Have to update to new API using WebKit’s WKWebView, or what I have done is removed UnityAds from UnityFramework when submitting to AppStore. Unity, any idea when this will be updated? If so needs to be done, Apple will stop accepting submissions soon with this deprecated class.
Note:
In apps that run in iOS 8 and later, use the WKWebView class instead of using UIWebView. Additionally, consider setting the WKPreferences property javaScriptEnabled to NO if you render files that are not supposed to run JavaScript.