blob: 931ac395eb03920802a44cff68cdecb561929405 [file] [log] [blame]
Erin Yancab226f2020-11-10 13:45:20 -08001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2buildscript {
Android Auto Companionddfbeb62021-03-17 16:54:14 -07003 ext.kotlin_version = '1.4.31'
Erin Yancab226f2020-11-10 13:45:20 -08004 repositories {
5 google()
6 jcenter()
7 }
8 dependencies {
9 classpath "com.android.tools.build:gradle:4.0.2"
Android Auto Companionddfbeb62021-03-17 16:54:14 -070010 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Erin Yancab226f2020-11-10 13:45:20 -080011
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()
20 jcenter()
21 }
22}
23
24task clean(type: Delete) {
25 delete rootProject.buildDir
Erin Yaneed84c82020-12-04 18:18:08 +000026}