Searching the Xcode project for web views doesn’t return anything. Both by searching in Xcode and by searching with grep and ripgrep
At first I thought it was because of the IAP package, I removed it along with the Analytics package but it still got rejected. Is there any way to check if they somehow are still in there?
Apple is very sensitive about dynamic functionality such as webviews. Do any views appear on top of your app while using your it? These can include login screens, ads, etc. Could you provide a list of packages you are using?
It’s a very simple dice rolling app for role-playing games. It has no logins and doesn’t even need internet.
It used to have IAP and ads but I removed them because I want to make the app just paid. To try and get it approved I have now also removed the Analytics too. All of these were the Unity services one, no external plugins.
Is there any other way to check if they are somehow still included somewhere?
I discovered that manifest.json still has the Analytics package in it. Does that have webviews in it?
Also if Analytics service is disabled it shouldn’t be included in the build anyway right?
It’s also weird because it showed up in the package manager before, but it is gone now that the service is disabled. However in the file it’s still there?
I have now removed all references to Analytics too.
However if I search in the xarchive that XCode generates I find that ./dSYMs/UnityFramework.framework.dSYM/Contents/Resources/DWARF/UnityFramework contains the word UIWebView multiple times.
Which should not happen as Unity should have removed all UIWebView usage as said here [ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView]( ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView page-3#post-5572804)
these seem to come from linking to apple frameworks (dsym will collect all the symbols)
i just rechecked: nor 2019, nor 2020 have “UIWebView” anywhere in unity runtime code (i cant comment on packages/plugins)
which unity version are you using? Did you check plugins? if all else fails maybe bug report with your project attached so we can check on our end (if you post JUST case number, and not the whole link - nobody but unity employees would be able to see it)
I can confirm that the Editor installation and the iOS support also do not contain references to UIWebView. The only place where they show up is that dsym file.
I am using 2020.2.6f1 with no plugins. And the packages I use (manifest.json below) probably don’t contain it either.
As I understand it, they are in that dsym file because the UnityFramework includes UIKit and that links to UIWebView in it. But that doesn’t necessarily mean that the app actually has it in it’s runtime code thought, right?
I’ll do the bug report if everything else fails.