-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
65 lines (56 loc) · 1.31 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
57
58
59
60
61
62
63
64
65
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "EventApp"
include(":app")
include(":feature")
include("core_navigation")
include(":core_view")
include(":core_data")
//Account
include(":feature:account")
include ':feature:account:api'
include ':feature:account:impl'
//Home
include(":feature:home")
include ':feature:home:api'
include ':feature:home:impl'
//Event
include(":feature:event")
include ':feature:event:api'
include ':feature:event:impl'
//Profile
include(":feature:profile")
include ':feature:profile:api'
include ':feature:profile:impl'
//Settings
include(":feature:settings")
include ':feature:settings:api'
include ':feature:settings:impl'
//Assistant
include(":feature:assistant")
include ':feature:assistant:api'
include ':feature:assistant:impl'
//Speaker
include(":feature:speaker")
include ':feature:speaker:api'
include ':feature:speaker:impl'
//Payment
include(":feature:payment")
include ':feature:payment:api'
include ':feature:payment:impl'
//Detail Card
include ':feature:detail_card'
include ':feature:detail_card:api'
include ':feature:detail_card:impl'