-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
64 lines (56 loc) · 1.34 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
/*
* Designed and developed by Duckie Team, 2022
*
* Licensed under the MIT.
* Please see full license: https://github.com/duckie-team/duckie-android/blob/develop/LICENSE
*/
@file:Suppress("UnstableApiUsage")
rootProject.name = "duckie"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// Plugin 'com.google.gms.google-services': registration of listener on 'Gradle.addListener' is unsupported
// enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
pluginManagement {
pluginManagement {
repositories {
google()
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
includeBuild("build-logic")
}
buildCache {
local {
removeUnusedEntriesAfterDays = 7
}
}
include(
":di",
":app",
":data",
":domain",
":presentation",
":navigator",
":core:datastore",
":core:sync",
":feature:skeleton",
":feature:search",
":feature:setting",
":feature:onboard",
":feature:notification",
":feature:home",
":feature:start-exam",
":feature:solve-problem",
":feature:create-exam",
":feature:detail",
":feature:exam-result",
":feature:profile",
":feature:friends",
":feature:tag-edit",
":feature:dev-mode",
":common:kotlin",
":common:android",
":common:compose",
":plugin-ktor-client",
)