diff --git a/android/build.gradle b/android/build.gradle index 7269b3c2..9e70743b 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -38,3 +38,9 @@ subprojects { task clean(type: Delete) { delete rootProject.buildDir } + +gradle.projectsEvaluated { + tasks.withType(JavaCompile) { + options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" + } +}