| // Top-level build file where you can add configuration options common to all sub-projects/modules. |
| buildscript { |
| ext.kotlin_version = '1.5.30' |
| repositories { |
| // This will be populated by AndroidGradleTestCase |
| google() |
| mavenCentral() |
| } |
| dependencies { |
| classpath 'com.android.tools.build:gradle:7.2.0-dev' |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
| } |
| } |
| |
| allprojects { |
| repositories { |
| // This will be populated by AndroidGradleTestCase |
| google() |
| mavenCentral() |
| } |
| } |
| |
| |
| task clean(type: Delete) { |
| delete rootProject.buildDir |
| } |