-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
25 lines (22 loc) · 773 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
25 lines (22 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
plugins {
id("com.android.application") version System.getProperty("gradle.agp.version") apply false
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
allprojects {
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven("https://jitpack.io")
maven("https://maven.aliyun.com/repository/central")
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/gradle-plugin")
maven("https://maven.aliyun.com/repository/jcenter")
maven("https://maven.aliyun.com/repository/public")
}
}
tasks {
register<Delete>("clean").configure {
delete(rootProject.layout.buildDirectory)
}
}