-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
57 lines (55 loc) · 1.65 KB
/
settings.gradle.kts
File metadata and controls
57 lines (55 loc) · 1.65 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
51
52
53
54
55
56
57
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()
maven {
url = uri("https://jitpack.io")
content {
includeGroup("com.github.DeweyReed")
includeModule("com.github.PhilJay", "MPAndroidChart")
includeModule("com.github.kizitonwose", "CalendarView")
includeModule("com.github.zawadz88", "MaterialPopupMenu")
includeModule("com.github.Carbs0126", "NumberPickerView")
includeModule("com.github.ultimate-deej", "twowaynestedscrollview")
includeModule("com.github.cardinalby", "accurate-count-down-timer")
}
}
}
}
rootProject.name = "TimerMachine"
include(":domain")
include(":data")
include(":presentation")
include(":app-base")
include(":component-key")
include(":component-settings")
include(":component-tts")
include(":app-scheduler")
include(":app-settings")
include(":app-backup")
include(":app-tasker")
include(":app-timer-run")
include(":app-timer-edit")
include(":app-timer-list")
include(":app-timer-one")
include(":component-main")
include(":app-analytics-fake")
include(":flavor-google")
include(":app-intro")
include(":app")
include(":baselineprofile")