-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
settings.gradle.kts
82 lines (73 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven(url = "https://developer.huawei.com/repo/")
}
}
dependencyResolutionManagement {
/*repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)*/
repositories {
google {
content {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
maven(url = "https://developer.huawei.com/repo/")
}
}
rootProject.name = "movies"
include(
":androidApp",
":desktopApp",
":iosApp",
":iosAppCompose",
":webApp",
":instant",
":benchmark",
":core:platform-services:gms",
":core:platform-services:hms",
":core:platform-services:foss",
":core:platform-services:inject-android",
":core:platform-services:inject-desktop",
":core:platform-services:inject-ios",
":core:platform-services:inject-web",
":core:platform-services:interactor",
":core:analytics",
":core:common",
":core:interactor",
":core:network",
":core:notifications",
":core:persistence",
":core:repository",
":core:ui",
":core:widget",
":core:work",
":feature:main",
":feature:main-impl",
":feature:account",
":feature:account-impl",
":feature:auth",
":feature:auth-impl",
":feature:details",
":feature:details-impl",
":feature:feed",
":feature:feed-impl",
":feature:gallery",
":feature:gallery-impl",
":feature:search",
":feature:search-impl",
":feature:settings",
":feature:settings-impl",
":feature:debug",
":feature:debug-impl",
":core:ui-web",
":feature:main-impl-web",
":feature:feed-web",
":feature:feed-impl-web"
)