generated from AdamMc331/AndroidAppTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.gradle.kts
50 lines (43 loc) · 1.1 KB
/
settings.gradle.kts
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
49
50
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "PocketLeague"
include(":android:app")
include(":core:currency")
include(":core:data")
include(":core:datetime")
include(":core:datetime-test")
include(":core:displaymodels")
include(":core:displaymodels-test")
include(":core:feature")
include(":core:locale")
include(":core:models")
include(":core:models-test")
include(":core:test")
include(":data:event:api")
include(":data:event:impl")
include(":data:event:test")
include(":data:game")
include(":data:local-sqldelight")
include(":data:match:api")
include(":data:match:impl")
include(":data:match:test")
include(":data:octanegg")
include(":data:player")
include(":data:remote")
include(":data:remote-test")
include(":data:startgg")
include(":data:team")
include(":data:team-test")
include(":feature:debugmenu")
include(":feature:eventdetail")
include(":feature:teamdetail")
include(":shared:app")
include(":shared:app-legacy")
include(":shared:design-system")
include(":shared:ui")