-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsettings.gradle
41 lines (39 loc) · 1.25 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url "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"
}
}
}
}
rootProject.name = 'TimerMachine'
include ':domain'
include ':data'
include ':presentation'
include ':app-base'
include ':component-key', ':component-settings', ':component-tts'
include ':app-scheduler', ':app-settings', ':app-backup', ':app-tasker'
include ':app-timer-run', ':app-timer-edit'
include ':app-timer-list', ':app-timer-one'
include ':component-main', ':app-analytics-fake'
include ':flavor-google'
include ':app-intro'
include ':app'
include ':baselineprofile'