1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2// For android studio 2.3 and plugin 2.3.3 3 4buildscript { 5 repositories { 6 mavenCentral() 7 google() 8 } 9 dependencies { 10 classpath 'com.android.tools.build:gradle:7.0.2' 11 12 // NOTE: Do not place your application dependencies here; they belong 13 // in the individual module build.gradle files 14 } 15} 16 17allprojects { 18 repositories { 19 mavenCentral() 20 google() 21 } 22 gradle.projectsEvaluated { 23 tasks.withType(JavaCompile) { 24 options.compilerArgs << "-Xlint:all" 25 } 26 } 27} 28 29