本文介绍了避免皮棉当摇篮执行检查的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可能有人告诉我一个办法,以避免执行皮棉每次我在摇篮检查运行时间?
我在build.gradle已经定义
lintOptions {
安静的真
}
然而,它一直在做这项工作。现在的问题是,每次我必须做的检查,它需要年龄。
解决方案
摇篮打造-x皮棉
来源:Gradle用户指南:排除任务
could someone tell me a way to avoid executing "lint" each time I run in gradle check?
I've defined in build.gradle
lintOptions {
quiet true
}
However, it keeps doing this task. The problem is that it takes ages each time I have to do a check.
解决方案
gradle build -x lint
Source: Gradle User Guide : Excluding Tasks
这篇关于避免皮棉当摇篮执行检查的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!