-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
settings.gradle
48 lines (48 loc) · 1.12 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 {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
rootProject.name = "My Brain"
include ':app'
include ':core:util'
include ':core:notification'
include ':tasks:domain'
include ':core:alarm'
include ':notes:domain'
include ':core:preferences'
include ':core:di'
include ':core:widget'
include ':calendar:domain'
include ':diary:domain'
include ':bookmarks:domain'
include ':core:ui'
include ':widget'
include ':settings:domain'
include ':core:database'
include ':tasks:presentation'
include ':notes:data'
include ':tasks:data'
include ':notes:presentation'
include ':diary:presentation'
include ':bookmarks:presentation'
include ':calendar:presentation'
include ':settings:presentation'
include ':settings:data'
include ':diary:data'
include ':calendar:data'
include ':bookmarks:data'
include ':ai:presentation'
include ':ai:domain'
include ':ai:data'
include ':core:network'