-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
41 lines (37 loc) · 1.07 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
@file:Suppress("UnstableApiUsage", "UNCHECKED_CAST")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "CatchBottle"
include (":app")
//include (":core:common")
//include (":core:design:core_design_resource")
//include (":core:design:designsystem")
//include (":core:design:ui")
//include (":core:data:model:user")
//include (":core:data:model:liquor")
//include (":core:network:firebase:storage")
//include (":core:network:firebase:remoteconfig")
//include (":core:network:firebase:firestore")
//
//include (":core:design:compose")
//include (":core:domain")
//include (":core:data:repository")
//
//include (":features:screen:")
//include (":features:screen:main_navigation_contents")
//include (":features:screen:login")
//include (":features:screen:main")