I tried to add the following to the root build.gradle file:
build.gradle
subprojects { gradle.projectsEvaluated { tasks.withType(Compile) {
Put this in your build.gradle file (root directory):
allprojects { // Projects gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.encoding = 'UTF-8' options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" } } }