hotfix deprecate function

This commit is contained in:
lionel
2021-01-14 12:11:28 +01:00
parent 8b3b9d4d99
commit 4612b1a994
5 changed files with 15 additions and 3 deletions

View File

@ -17,6 +17,11 @@ allprojects {
google()
jcenter()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
task clean(type: Delete) {