-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
62 lines (54 loc) · 1.64 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("tooling")
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
rootProject.name = "Trails"
// Android
include(":android:app")
// Backend
include(":backend:server")
// XPLAT
/// Core
include(":xplat:core:circuit:api")
include(":xplat:core:circuit:impl")
/// Feat
include(":xplat:feat:bottomNav:api")
include(":xplat:feat:bottomNav:impl")
include(":xplat:feat:homeScreen:api")
include(":xplat:feat:homeScreen:impl")
include(":xplat:feat:messagesScreen:api")
include(":xplat:feat:messagesScreen:impl")
include(":xplat:feat:postScreen:api")
include(":xplat:feat:postScreen:impl")
include(":xplat:feat:profileScreen:api")
include(":xplat:feat:profileScreen:impl")
include(":xplat:feat:searchScreen:api")
include(":xplat:feat:searchScreen:impl")
/// Lib
include(":xplat:lib:carve")
include(":xplat:lib:db")
include(":xplat:lib:repositories:post:api")
include(":xplat:lib:repositories:post:impl")
include(":xplat:lib:repositories:post:test")
include(":xplat:lib:models")
include(":xplat:lib:rest:api")
include(":xplat:lib:rest:impl")
include(":xplat:lib:store")
include(":xplat:lib:operations")
include(":xplat:lib:coroutines")