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.gradle8
1 files changed, 7 insertions, 1 deletions
diff --git a/android/WALT/build.gradle b/android/WALT/build.gradle
index aaedccb..fddf29e 100644
--- a/android/WALT/build.gradle
+++ b/android/WALT/build.gradle
@@ -2,10 +2,11 @@
buildscript {
repositories {
+ google()
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle-experimental:0.8.3'
+ 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
@@ -14,7 +15,12 @@ buildscript {
allprojects {
repositories {
+ google()
jcenter()
maven { url "https://jitpack.io" }
}
+
+ tasks.withType(JavaCompile) {
+ options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
+ }
}