xref: /aosp_15_r20/external/walt/android/WALT/build.gradle (revision bf47c6829f95be9dd55f4c5bbc44a71c90aad403)
1// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4    repositories {
5        google()
6        jcenter()
7    }
8    dependencies {
9        classpath 'com.android.tools.build:gradle:3.6.3'
10
11        // NOTE: Do not place your application dependencies here; they belong
12        // in the individual module build.gradle files
13    }
14}
15
16allprojects {
17    repositories {
18        google()
19        jcenter()
20        maven { url "https://jitpack.io" }
21    }
22
23    tasks.withType(JavaCompile) {
24        options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
25    }
26}
27