2021-02-10 06:38:05 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2021-02-12 10:34:05 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2021-09-29 07:16:44 +00:00
|
|
|
maven { url 'https://repo1.maven.org/maven2/' }
|
2021-02-10 06:38:05 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-09-25 13:50:44 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.2'
|
2021-02-10 06:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2021-02-12 10:34:05 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2021-09-29 07:16:44 +00:00
|
|
|
maven { url 'https://repo1.maven.org/maven2/' }
|
2021-02-10 06:38:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|