aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'android/WALT/build.gradle')
-rw-r--r--android/WALT/build.gradle6
1 files changed, 5 insertions, 1 deletions
diff --git a/android/WALT/build.gradle b/android/WALT/build.gradle
index 6f09b25..fddf29e 100644
--- a/android/WALT/build.gradle
+++ b/android/WALT/build.gradle
@@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.2'
+ classpath 'com.android.tools.build:gradle:3.6.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -19,4 +19,8 @@ allprojects {
jcenter()
maven { url "https://jitpack.io" }
}
+
+ tasks.withType(JavaCompile) {
+ options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
+ }
}