[FIX] Выводим больше варнингов в консоль при сборке.

This commit is contained in:
Zaxar163 2019-12-17 06:52:53 +01:00
parent dcf9a56c01
commit 9cbdd6300c
No known key found for this signature in database
GPG key ID: 1FE4F2E1F053831B

View file

@ -32,6 +32,7 @@
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
options.annotationProcessorPath = configurations.aptOnly
options.incremental = true // one flag, and things will get MUCH faster
}