-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
41 lines (37 loc) · 1.14 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
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
plugins {
kotlin("multiplatform").version(extra["kotlin.version"] as String)
kotlin("android").version(extra["kotlin.version"] as String)
id("com.android.application").version(extra["agp.version"] as String)
id("com.android.library").version(extra["agp.version"] as String)
id("org.jetbrains.compose").version(extra["compose.version"] as String)
}
}
rootProject.name = "pokedex"
include(
":android:app",
":android:common:pig",
":android:common:scoping",
":android:common:treehouse",
":android:feat:account",
":android:feat:pokedex",
":common:api",
":common:client",
":common:entity",
":treehouse:componentbox",
":treehouse:launcher",
":treehouse:presenter",
":treehouse:schema",
":treehouse:schema:compose",
":treehouse:schema:compose:protocol",
":treehouse:schema:widget",
":treehouse:schema:widget:protocol",
":treehouse:state",
":treehouse:zipline"
)