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:
parent
f4dd1d17cf
commit
ee41722527
|
@ -18,7 +18,7 @@ android {
|
|||
}
|
||||
|
||||
lintOptions {
|
||||
abortOnError false
|
||||
lintConfig file("lint-config.xml")
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
<lint>
|
||||
<issue id="InvalidPackage">
|
||||
<ignore path="**/bcprov-jdk15on-*.jar"/>
|
||||
</issue>
|
||||
</lint>
|
Loading…
Reference in New Issue