-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
37 lines (32 loc) · 1.02 KB
/
settings.gradle
File metadata and controls
37 lines (32 loc) · 1.02 KB
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url 'https://maven.aliyun.com/repositories/google' }
maven { url 'https://maven.aliyun.com/repository/central' }
}
}
rootProject.name = "AndroidLibraryTemplate"
//************************演示项目 目录************************
include ':app_example'
include ':app_library'
//************************公共库 目录************************
// 项目 通用资源库
include ':res'
project(':res').projectDir = new File('common/res')
// 项目 国际化库
include ':i18n'
project(':i18n').projectDir = new File('common/i18n')
// 项目 路由管理库
include ':router'
project(':router').projectDir = new File('common/router')