I am lost now with apple's warning
ITMS-90809: Deprecated API Usage
saying that the submitted app contains UIWebView.
I have removed all UIWebView in the source code, going as far as even removing it in comments.
Search function in Xcode and in Finder show no result.
All pods have been brought to the latest version.
Running
nm myapp | grep UIWeb
for framework in Frameworks/*.framework; do
fname=$(basename $framework .framework)
echo $fname
nm $framework/$fname | grep UIWeb
done
nicely lists all frameworks as being clean.
So where else could a UIWebView be hiding?