-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
31 lines (29 loc) · 1.2 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
include ':app',
':buildSrc',
':common:network',
':common:model',
':features:games:di',
':features:games:data',
':features:games:domain',
':features:games:presentation',
':features:teams:di',
':features:teams:data',
':features:teams:domain',
':features:teams:presentation',
':features:players:di',
':features:players:data',
':features:players:domain',
':features:players:presentation'
project(":features:games:di").name = "games-di"
project(":features:games:data").name = "games-data"
project(":features:games:domain").name = "games-domain"
project(":features:games:presentation").name = "games_presentation"
project(":features:teams:di").name = "teams-di"
project(":features:teams:data").name = "teams-data"
project(":features:teams:domain").name = "teams-domain"
project(":features:teams:presentation").name = "teams_presentation"
project(":features:players:di").name = "players-di"
project(":features:players:data").name = "players-data"
project(":features:players:domain").name = "players-domain"
project(":features:players:presentation").name = "players_presentation"
rootProject.name = 'ReactBasket'