gradle: do not abort on lint errors

pull/431/head
Alinson S. Xavier 7 years ago
parent dc74c0e54b
commit a1bd4836dd

@ -24,6 +24,12 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
buildToolsVersion '26.0.2'
}

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

@ -65,6 +65,7 @@ android {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
compileOptions {

Loading…
Cancel
Save