-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
50 lines (48 loc) · 1.34 KB
/
settings.gradle.kts
File metadata and controls
50 lines (48 loc) · 1.34 KB
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
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
val templateProperties = java.util.Properties().apply {
val propertiesFile = file("template.properties")
if (propertiesFile.exists()) {
propertiesFile.inputStream().use { load(it) }
}
}
rootProject.name = templateProperties.getProperty("project.name") ?: "android-modular-template"
include(":app")
include(":core:ui")
include(":core:common")
include(":core:data")
include(":core:domain")
include(":core:navigation")
include(":core:network")
include(":core:datastore:preferences")
include(":core:datastore:proto")
include(":feature")
include(":feature:recording")
include(":feature:recording:api")
include(":feature:profile")
include(":feature:profile:api")
include(":core:analytics")
include(":core:notifications")
include(":core:remoteconfig")
include(":feature:settings")
include(":feature:settings:api")