-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle
63 lines (51 loc) · 1.37 KB
/
settings.gradle
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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
// Or use a single nexus repository
// maven {
// url "https://nexus.myrepo.ru/repository/"
// }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// Or use a single nexus repository
// maven {
// url "https://nexus.myrepo.ru/repository/"
// }
}
}
enableFeaturePreview "STABLE_CONFIGURATION_CACHE"
boolean isCiServer = System.getenv().containsKey("CI")
buildCache {
remote(HttpBuildCache) {
// Activate if you have a remote cache implemented
enabled = false
// Add your URL
url = 'https://example.com/cache/'
setPush(isCiServer)
credentials {
username = System.getenv("REMOTE_CACHE_USERNAME")
password = System.getenv("REMOTE_CACHE_PASSWORD")
}
}
}
rootProject.name = "idiomic-android-arch"
// Configuration
include 'app'
// Base
include ':product:main'
// Core
include ':product:core:component-ui'
// Design system
include ':product:designsystem:components'
include ':product:designsystem:theme'
// Features
include ':product:mvvm-google'
include ':product:mvi-kotlin'