Flutter: How to fix ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs

后端 未结 5 2143
生来不讨喜
生来不讨喜 2021-02-06 22:35

When submitting my latest build, Apple suddenly returned a message saying that there was an issue, specifically:

ITMS-90809: Deprecated API Usage - Apple

5条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-06 22:55

    Since this has become the "goto answer" on Google for this rejection message, I'll add a React Native fix.

    On React Native, considering that you've been a good developer and are not using UIWebView in your own code, use the following command to find out which of your dependencies still does use UIWebView:

    grep -r UIWebView node_modules/*
    

    There is a bit more info here.

提交回复
热议问题