anyone know why android lint is not failing with t...
# android
t
anyone know why android lint is not failing with this setup 🤔
Copy code
lintOptions {
        checkReleaseBuilds false
        warningsAsErrors true
        abortOnError true
        lintConfig file('lint.xml')
        baseline(file("lint-baseline.xml"))
    }
I added a new lint violation which is a warning, but should be treated as an error and abort.. yet the build succeeds every time
😶 4
lint.xml
Copy code
<lint>
    <issue id="MissingTranslation" severity="ignore"/>
    <issue id="GradleDependency" severity="informational" />
</lint>
c
😶
🙏 1
t
thanks for all the 😶