blob: 0060e3697c4d64d7562758c8423ca2c1ddb000f5 [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 Companionfd1a90a2023-06-01 09:05:39 -07003 ext.kotlin_version = '1.8.0'
Erin Yancab226f2020-11-10 13:45:20 -08004 repositories {
5 google()
6 jcenter()
7 }
8 dependencies {
Android Auto Companionfd1a90a2023-06-01 09:05:39 -07009 classpath "com.android.tools.build:gradle:7.3.1"
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
Yuxing Yaobcbe5f32023-11-02 17:31:37 -070024project.ext {
25 compileSdkVersion = 34
26}
27
Erin Yancab226f2020-11-10 13:45:20 -080028task clean(type: Delete) {
29 delete rootProject.buildDir
Erin Yaneed84c82020-12-04 18:18:08 +000030}