fix[android]: add section to show compiler warnings

This commit is contained in:
Sandra Forberger 2019-11-01 15:31:48 +07:00
parent 9d4d478893
commit fc89bb9543

View file

@ -72,3 +72,9 @@ dependencies {
// Assign the annotation processor for tests.
testAnnotationProcessor 'com.google.auto.service:auto-service:1.0-rc4'
}
allprojects {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
}