1*32afb93cSXin Li// Top-level build file where you can add configuration options common to all sub-projects/modules. 2*32afb93cSXin Libuildscript { 3*32afb93cSXin Li ext.kotlin_version = "1.5.31" 4*32afb93cSXin Li repositories { 5*32afb93cSXin Li google() 6*32afb93cSXin Li mavenCentral() 7*32afb93cSXin Li } 8*32afb93cSXin Li dependencies { 9*32afb93cSXin Li classpath 'com.android.tools.build:gradle:7.0.3' 10*32afb93cSXin Li classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11*32afb93cSXin Li 12*32afb93cSXin Li // NOTE: Do not place your application dependencies here; they belong 13*32afb93cSXin Li // in the individual module build.gradle files 14*32afb93cSXin Li } 15*32afb93cSXin Li} 16*32afb93cSXin Li 17*32afb93cSXin Liallprojects { 18*32afb93cSXin Li repositories { 19*32afb93cSXin Li google() 20*32afb93cSXin Li mavenCentral() 21*32afb93cSXin Li } 22*32afb93cSXin Li} 23*32afb93cSXin Li 24*32afb93cSXin Litask clean(type: Delete) { 25*32afb93cSXin Li delete rootProject.buildDir 26*32afb93cSXin Li} 27