2019-06-04 05:25:05 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-06-09 00:43:57 +08:00
|
|
|
|
2019-06-04 05:25:05 +08:00
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 22:37:36 +08:00
|
|
|
mavenCentral()
|
2019-06-04 05:25:05 +08:00
|
|
|
}
|
|
|
|
dependencies {
|
2024-02-11 21:20:23 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:8.1.2'
|
2019-06-04 05:25:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-28 22:37:36 +08:00
|
|
|
mavenCentral()
|
2019-06-04 05:25:05 +08:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-11 21:20:23 +08:00
|
|
|
tasks.register('clean', Delete) {
|
2024-09-20 01:18:28 +08:00
|
|
|
delete rootProject.layout.buildDirectory
|
2020-06-09 00:43:57 +08:00
|
|
|
}
|