blob: 4cfb7144c2e7eb6cbe9baac8632ee2a56d60a076 [file] [log] [blame]
Jean-Luc Brouilletb6363492021-04-19 01:11:17 -07001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2buildscript {
Xusong Wang9a70eae2021-10-12 17:49:56 -07003 ext.kotlin_version = "1.5.31"
Jean-Luc Brouilletb6363492021-04-19 01:11:17 -07004 repositories {
5 google()
6 mavenCentral()
7 }
8 dependencies {
Xusong Wang9a70eae2021-10-12 17:49:56 -07009 classpath 'com.android.tools.build:gradle:7.0.3'
Jean-Luc Brouilletb6363492021-04-19 01:11:17 -070010 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
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 google()
Xusong Wang9a70eae2021-10-12 17:49:56 -070020 mavenCentral()
Jean-Luc Brouilletb6363492021-04-19 01:11:17 -070021 }
22}
23
24task clean(type: Delete) {
25 delete rootProject.buildDir
26}