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

前端 未结 9 2206
星月不相逢
星月不相逢 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-30 23:59

    I get rid out from this by following below steps (in react-native project)-

    Step 1:

    Search “UIWebView” in xcode project directory

    Step 2:

    Right click (on RCTWebView.m) and select “Reveal In Project Navigator”

    Step 3:

    Scroll down and delete the following four files only:

     1. RCTWebView.h
     2. RCTWebView.m
     3. RCTWebViewManager.h
     4. RCTWebViewManager.m
    

    Then clean the project & archive.

    N.B: If you use 'react-native-community/react-native-webview' library then update with latest version otherwise it's done.

提交回复
热议问题