gradle: do not abort on lint errors

This commit is contained in:
2018-08-14 07:31:18 -05:00
parent dc74c0e54b
commit a1bd4836dd
3 changed files with 12 additions and 0 deletions

View File

@@ -24,6 +24,11 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
}
dependencies {