forked from Epicom-App/epicom-app-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
47 lines (43 loc) · 969 Bytes
/
settings.gradle.kts
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
jcenter()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
if (requested.id.namespace == "com.android") {
useModule("com.android.tools.build:gradle:4.0.1")
}
}
}
}
rootProject.name = "EbolaApp"
include(":app",":ui",":presentation",":features")
// Ui
include(
":ui:common",
":ui:main",
":ui:navigation",
":ui:map",
":ui:widget",
":ui:debug",
":ui:settings",
":ui:tableview",
":ui:webview",
":ui:onboarding",
":ui:legend"
)
// Features
include(
":features:geotracking",
":features:background_updates",
":features:permissions",
":features:logging",
":features:load_regions",
":features:appcenter",
":features:settings"
)
include(":common:common_code")
project(":common:common_code").projectDir = file("../common/common_code")