ITMS-90809: Deprecated API Usage - Apple will no longer accept submissions of new apps that use UIWebView as of April 30, 2020 and app updates that use UIWebV
In my case, There was no UIWebView
in my project but still apple shows the above error. Then I find out the files which contain UIWebView using the following steps.
Step 1.Open terminal
Step 2. cd then hit enter.
Step 3. paste this command
grep -r "UIWebView" .
Then you will find the file list.
In my case. I remove GoogleAdMobSDK from project and install it again using pod. https://developers.google.com/admob/ios/quick-start
If you never used pod then learn "How to use pod" on youtube.
After installing pod. Apple accepted my project.
Huh. Finally solved.