其他分享
首页 > 其他分享> > ITMS-90809: Deprecated API Usage

ITMS-90809: Deprecated API Usage

作者:互联网

2020年4月之后上架苹果商店的新建App会遇到这个问题:

ITMS-90809: Deprecated API Usage - New apps that use UIWebView are no longer accepted. Instead, use WKWebView for improved security and reliability. Learn more (https://developer.apple.com/documentation/uikit/uiwebview).

Mac用户解决方法如下:

1.打开 终端

2.输入:cd 项目路径(这里可以直接左键拖动文件夹到终端)

3.输入:grep -r "UIWebView" .    注意:最后的"."不要丢掉

然后会找到包含UIWebView的文件,旧版本Unity导出的Xcode工程会提示:Binary file ./Libraries/libiPhone-lib.a matches

这里删除libiPhone-lib.a文件,就可以提交成功了

标签:use,lib,Deprecated,API,UIWebView,Usage,90809
来源: https://blog.csdn.net/u011157113/article/details/115802267