Only ignore specific lint issue (#14)

while  f4dd1d1 fixes #13 it is very broadly deactivating lint trowing errors
This PR makes it just ignore the specific lint problem at hand
This commit is contained in:
ligi 2019-03-27 16:38:39 +01:00 committed by Bitgamma
parent f4dd1d17cf
commit ee41722527
2 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,7 @@ android {
} }
lintOptions { lintOptions {
abortOnError false lintConfig file("lint-config.xml")
} }
compileOptions { compileOptions {

View File

@ -0,0 +1,5 @@
<lint>
<issue id="InvalidPackage">
<ignore path="**/bcprov-jdk15on-*.jar"/>
</issue>
</lint>