forked from timer-machine/timer-machine-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
48 lines (46 loc) · 1.52 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//noinspection JcenterRepositoryObsolete
jcenter {
content {
includeModule "com.afollestad.material-dialogs", "core"
includeModule "com.afollestad.material-dialogs", "commons"
includeModule "com.github.zawadz88.materialpopupmenu", "material-popup-menu"
includeModule "cn.carbswang.android", "NumberPickerView"
}
}
maven {
url "https://jitpack.io"
content {
includeGroup "xyz.aprildown"
includeGroup "com.github.DeweyReed"
includeModule "com.github.PhilJay", "MPAndroidChart"
includeModule "com.github.kizitonwose", "CalendarView"
includeGroup "com.github.whataa"
}
}
}
}
rootProject.name = 'TimerMachine'
include ':domain'
include ':data'
include ':presentation'
include ':app-base'
include ':component-key', ':component-settings'
include ':app-scheduler', ':app-settings', ':app-backup', ':app-tasker', ':app-tts'
include ':app-timer-run', ':app-timer-edit'
include ':app-timer-list', ':app-timer-one'
include ':component-main', ':app-analytics', ':app-analytics-fake'
include ':flavor-google'
include ':app-intro'
include ':app'