2021-04-18 03:35:25 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-05-09 09:30:38 +00:00
|
|
|
mavenCentral()
|
2021-04-18 03:35:25 +00:00
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-12-07 01:20:09 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.3'
|
2021-04-18 03:35:25 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-05-09 09:30:38 +00:00
|
|
|
mavenCentral()
|
2021-04-18 03:35:25 +00:00
|
|
|
google()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|