Change CI config so that it finds more breakages

Previously we did not run lint and did not try to compile the
AndroidTest instrumentation tests.
This commit is contained in:
Torsten Grote
2019-10-17 11:18:12 -03:00
parent 98eb78c7bc
commit 1be078d181
7 changed files with 46 additions and 31 deletions

View File

@@ -22,6 +22,14 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
// FIXME
warning "LintError"
warning "InvalidPackage"
warning "MissingPermission"
warning "InlinedApi", "ObsoleteSdkInt", "Override", "NewApi", "UnusedAttribute"
}
}
configurations {