-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
62 lines (42 loc) · 1.28 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
rootProject.name = "ktcast"
include(":app")
// Core
include(":core:di:library")
include(":core:navigation:android-library")
include(":core:exceptions:library")
include(":core:ui-components:android-library")
include(":core:ui-components:res")
include(":core:mvi:android-library")
include(":core:mvi:android-utils")
include(":core:mvi:res")
include(":core:debug-helper:android-library")
include(":core:dialog:android-library")
// Common
include(":common:network:android-library")
include(":common:network:utils")
include(":common:persistence:database:android-library")
include(":common:persistence:secure-storage:android-library")
include(":common:logout:android-library")
// Libraries
include(":libraries:mapper:library")
include(":libraries:either:library")
include(":libraries:viewmodel-factory:android-library")
include(":libraries:resource-provider:android-library")
include(":libraries:utils:core:android_library")
include(":libraries:deps-holder-proccessor:library")
include(":core:core-di")