-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
58 lines (44 loc) · 1.14 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
maven {
url = "https://maven.pkg.jetbrains.space/public/p/compose/dev"
}
}
}
rootProject.name = "AirbnbListing"
include(":app")
include(":app:workmanager")
include(":scaffold")
include(":data")
include(":data:database")
include(":data:model:listing")
include(":data:model:listing:database")
include(":data:model:favorite")
include(":data:model:favorite:database")
include(":data:model:media")
include(":data:model:media:database")
include(":data:model:user")
include(":data:model:user:database")
include(":data:network")
include(":feature:listing:feed")
include(":feature:listing:detail")
include(":feature:listing:gallery")
include(":feature:profile")
include(":feature:favorites")
include(":feature:messages")
include(':feature:explore')
include(":data:sync")
include(":data:test")
include(":ui")