-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (20 loc) · 1.02 KB
/
Copy pathsettings.gradle
File metadata and controls
26 lines (20 loc) · 1.02 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
include ':core'
project(':core').projectDir = new File(rootDir, 'sources/base/core')
include ':injector'
project(':injector').projectDir = new File(rootDir, 'sources/base/injector')
include ':repo'
project(':repo').projectDir = new File(rootDir, 'sources/base/repo')
include ':network'
project(':network').projectDir = new File(rootDir, 'sources/base/network')
include ':notifications'
project(':notifications').projectDir = new File(rootDir, 'sources/features/notifications/notifications-fake')
include ':mainscreen'
project(':mainscreen').projectDir = new File(rootDir, 'sources/features/mainscreen')
include ':map_screen'
project(':map_screen').projectDir = new File(rootDir, 'sources/features/map_screen')
include ':recycle_screen'
project(':recycle_screen').projectDir = new File(rootDir, 'sources/features/recycle_screen')
include ':chat_module'
project(':chat_module').projectDir = new File(rootDir, 'sources/features/chat_module')
include ':vr_screen'
project(':vr_screen').projectDir = new File(rootDir, 'sources/features/vr_screen')