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

前端 未结 9 2198
星月不相逢
星月不相逢 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:05

    I have faced same problem in Ionic 4.

    List of steps followed to fix the problem

    please update your IOS platform. and App browser .

    cordova plugin add cordova-plugin-wkwebview-engine
    
    run cordova plugin add cordova-plugin-wkwebview-engine
    
    detele node_modules , then reinstall by run yarn or npm install
    
    run ionic cordova platform rm ios
    
    run ionic cordova platform add ios@5.1.1
    
    npm i cordova-plugin-inappbrowser@3.2.0
    
    cordova plugin add cordova-plugin-inappbrowser@3.2.0
    
    ionic cordova prepare ios.
    
    ionic cordova build ios
    

提交回复
热议问题