-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
51 lines (48 loc) · 1.25 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
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
versionCatalogs {
register("budgetplus") {
from(files("gradle/plugins.versions.toml"))
}
}
}
rootProject.name = "budgetplus"
include(":app")
include(":benchmark")
include(":core:billing")
include(":core:common")
include(":core:data")
include(":core:inapp-review")
include(":core:inapp-update")
include(":core:notification")
include(":core:settings-api")
include(":core:theme")
include(":core:ui")
include(":feature:add-record")
include(":feature:auth")
include(":feature:category-pills")
include(":feature:color-tone-picker")
include(":feature:currency-picker")
include(":feature:edit-category")
include(":feature:insider")
include(":feature:overview")
include(":feature:push-notifications")
include(":feature:record-card")
include(":feature:records")
include(":feature:settings")
include(":feature:speak-to-record")
include(":feature:unlock-premium")
include(":feature:welcome")