Temporary ignore lint errors

Because it fails to ignore "UsingOnClickInXml"
This commit is contained in:
xynngh 2021-11-13 11:45:08 +04:00
parent 3f91aaeaa3
commit 2aaed42ed3
2 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ android {
} }
lintOptions { lintOptions {
lintConfig file("lint.xml") lintConfig file("lint.xml")
abortOnError false
} }
} }

View File

@ -2,5 +2,5 @@
<lint> <lint>
<issue id="MissingTranslation" severity="ignore" /> <issue id="MissingTranslation" severity="ignore" />
<issue id="UsingOnClickInXml" severity="warning" /> <issue id="UsingOnClickInXml" severity="informational" />
</lint> </lint>