-
Notifications
You must be signed in to change notification settings - Fork 68
/
settings.gradle
56 lines (43 loc) · 1.27 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
51
52
53
54
55
56
apply from: "coreProperties.gradle"
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven { url 'https://jitpack.io' }
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
boolean isTallyOpenSourceProject = commonProperties.isTallyOpenSourceProject
if (isTallyOpenSourceProject) {
rootProject.name = "TallyApp"
} else {
rootProject.name = "ModuleApps"
}
if (!isTallyOpenSourceProject) {
include ':app-demo:app'
include ':app-wp:app'
include ':app-wp:module-home'
include ':app-wp:module-base'
}
include ':app-tally:app'
include ':app-tally:module-develop'
include ':app-tally:module-statistical'
include ':app-tally:module-loading'
include ':app-tally:module-account'
include ':app-tally:module-bill'
include ':app-tally:module-my'
include ':app-tally:module-home'
include ':app-tally:module-datasource'
include ':app-tally:module-base'
if (!isTallyOpenSourceProject) {
include ':module-firebase'
}
include ':module-bugly'
include ':module-develop'
include ':module-support'
include ':module-system:'
include ':module-base'
include ':lib-resource'
include ':app-tally:module-bill-auto'
include ':module-image-upload'