我在我的android项目中实现了一个开源模块。我想忽略这个模块的皮棉分析。我研究了其他问题,并尝试在我的项目根目录中创建lint xml。这是我的lint xml:
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="all">
<ignore path="open_source_module"/>
</issue>
</lint>
我尝试更改路径结构,如:** / open_source_module,** / open_source_module / src ...
但他们没有用。你能帮我吗?
答案 0 :(得分:0)
在模块级build.gradle文件中添加以下行:
android {
lintOptions {
abortOnError false
}
}