ITMS-90809: Deprecated API Usage - existing app that use UIWebView are no longer accepted

前端 未结 9 2193
星月不相逢
星月不相逢 2020-12-30 23:43

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

9条回答
  •  鱼传尺愫
    2020-12-31 00:22

    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.

提交回复
热议问题