-
Notifications
You must be signed in to change notification settings - Fork 120
/
build.gradle
36 lines (32 loc) · 1.02 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
30
31
32
33
34
35
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
// jcenter()
// public仓是central仓和jcenter仓的聚合仓
maven { url 'https://maven.aliyun.com/repository/public' }
// google仓库
maven { url 'https://maven.aliyun.com/repository/google' }
//新增友盟+应用性能监控maven
maven { url 'https://repo1.maven.org/maven2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
}
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
google()
// jcenter()
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repository/google' }
//新增友盟+应用性能监控maven
maven { url 'https://repo1.maven.org/maven2/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}