-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
67 lines (53 loc) · 1.53 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
65
66
67
@file:Suppress("UnstableApiUsage")
include(":core:android_test")
include(":core:test")
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))
rootProject.name = "RunningTracker"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":auth:presentation")
include(":auth:domain")
include(":auth:data")
include(":core:presentation:design_system")
include(":core:presentation:design_system_wear")
include(":core:presentation:ui")
include(":core:domain")
include(":core:data")
include(":core:database")
include(":core:notification")
include(":run:presentation")
include(":run:domain")
include(":run:data")
include(":run:network")
include(":run:location")
include(":analytics:analytics_feature")
include(":analytics:presentation")
include(":analytics:domain")
include(":analytics:data")
include(":wearable:app")
include(":wearable:run:presentation")
include(":wearable:run:domain")
include(":wearable:run:data")
include(":core:connectivity:data")
include(":core:connectivity:domain")