-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle
More file actions
31 lines (20 loc) · 1022 Bytes
/
settings.gradle
File metadata and controls
31 lines (20 loc) · 1022 Bytes
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
include ':core'
project (':core').projectDir = new File(rootDir, 'sources/base/core')
include ':injector'
project (':injector').projectDir = new File(rootDir, 'sources/base/injector')
include ':model'
project (':model').projectDir = new File(rootDir, 'sources/base/model')
include ':networking'
project (':networking').projectDir = new File(rootDir, 'sources/base/networking')
include ':datastore'
project (':datastore').projectDir = new File(rootDir, 'sources/base/datastore')
include ':pagination'
project (':pagination').projectDir = new File(rootDir, 'sources/base/pagination')
include ':splash'
project (':splash').projectDir = new File(rootDir, 'sources/features/splash')
include ':main_screen'
project (':main_screen').projectDir = new File(rootDir, 'sources/features/main_screen')
include ':users_list'
project (':users_list').projectDir = new File(rootDir, 'sources/features/users_list')
include ':user_details'
project (':user_details').projectDir = new File(rootDir, 'sources/features/user_details')