-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
29 lines (27 loc) · 1.25 KB
/
build.gradle
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
26
27
28
29
buildscript {
repositories {
//陝爵堁堁虴 Maven https://developer.aliyun.com/mvn/guide
maven { url 'https://maven.aliyun.com/repository/public' }//central累睿jcenter累腔擄磁累 埭華硊 https://repo1.maven.org/maven2/ http://jcenter.bintray.com/
maven { url 'https://maven.aliyun.com/repository/google' }//google 埭華硊 https://maven.google.com/
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }//gradle-plugin 埭華硊 https://plugins.gradle.org/m2/
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.3.1")
}
}
allprojects {
repositories {
//陝爵堁堁虴 Maven https://developer.aliyun.com/mvn/guide
maven { url 'https://maven.aliyun.com/repository/public' }//central累睿jcenter累腔擄磁累 埭華硊 https://repo1.maven.org/maven2/ http://jcenter.bintray.com/
maven { url 'https://maven.aliyun.com/repository/google' }//google 埭華硊 https://maven.google.com/
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }//gradle-plugin 埭華硊 https://plugins.gradle.org/m2/
maven { url 'https://jitpack.io' }
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}