app审核,新项目5月开始检测是否包含UIWebView,老项目12月开始检测,如果包含审核会被拒绝
cd 你的项目
find . -type f | grep -e ".a" -e ".framework" | xargs -n 10 grep -s UIWebView
**xargs -n 10 grep -s UIWebView -n 10,可以手动修改设置条数 **
或者
grep -r UIWebView .
app审核,新项目5月开始检测是否包含UIWebView,老项目12月开始检测,如果包含审核会被拒绝
cd 你的项目
find . -type f | grep -e ".a" -e ".framework" | xargs -n 10 grep -s UIWebView
**xargs -n 10 grep -s UIWebView -n 10,可以手动修改设置条数 **
或者
grep -r UIWebView .
本文标题:检测项目包含UIWebView
本文链接:https://www.haomeiwen.com/subject/wgqmahtx.html
网友评论