forked from aqi00/android3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
50 lines (50 loc) · 1.68 KB
/
settings.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
// 以下四行添加阿里云的仓库地址,方便国内开发者下载相关插件
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google'}
maven { url 'https://maven.aliyun.com/repository/gradle-plugin'}
maven { url 'https://maven.aliyun.com/repository/public'}
// 以下添加华为的仓库地址,引入HMS需要
maven { url 'https://developer.huawei.com/repo/'}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// 以下四行添加阿里云的仓库地址,方便国内开发者下载相关插件
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'https://maven.aliyun.com/repository/google'}
maven { url 'https://maven.aliyun.com/repository/gradle-plugin'}
maven { url 'https://maven.aliyun.com/repository/public'}
// 以下添加华为的仓库地址,引入HMS需要
maven { url 'https://developer.huawei.com/repo/'}
}
}
rootProject.name = "android3"
include ':app'
include ':chapter02'
include ':chapter03'
include ':chapter04'
include ':chapter05'
include ':chapter06'
include ':chapter07'
include ':chapter08'
include ':chapter09'
include ':chapter10'
include ':chapter11'
include ':chapter12'
include ':chapter13'
include ':chapter14'
include ':chapter15'
include ':chapter16'
include ':chapter17'
include ':chapter18'
include ':chapter19'
include ':chapter20'
include ':hmsml'