forked from TheChance101/MENA-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
58 lines (55 loc) · 1.43 KB
/
settings.gradle.kts
File metadata and controls
58 lines (55 loc) · 1.43 KB
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
rootProject.name = "MENA"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
gradlePluginPortal()
}
}
include(":composeApp")
include(":design_system")
include(":identity_presentation")
include(":core_chat_presentation")
include(":wallet_presentation")
include(":faith_presentation")
include(":dukan_presentation")
include(":trends_presentation")
include(":identity_api")
include(":core_chat_api")
include(":wallet_api")
include(":faith_api")
include(":dukan_api")
include(":trends_api")
include(":identity_domain")
include(":core_chat_domain")
include(":wallet_domain")
include(":faith_domain")
include(":dukan_domain")
include(":trends_domain")
include(":identity_data")
include(":core_chat_data")
include(":wallet_data")
include(":dukan_data")
include(":faith_data")
include(":trends_data")
include(":admin_panel")