forked from square/workflow-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
42 lines (40 loc) · 1.32 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
rootProject.name = "workflow"
include(
":internal-testing-utils",
":samples:compose-samples",
":samples:containers:app-poetry",
":samples:containers:app-raven",
":samples:containers:android",
":samples:containers:common",
":samples:containers:hello-back-button",
":samples:containers:poetry",
":samples:dungeon:app",
":samples:dungeon:common",
":samples:dungeon:timemachine",
":samples:dungeon:timemachine-shakeable",
":samples:hello-terminal:hello-terminal-app",
":samples:hello-terminal:terminal-workflow",
":samples:hello-terminal:todo-terminal-app",
":samples:hello-workflow",
":samples:hello-workflow-fragment",
":samples:stub-visibility",
":samples:tictactoe:app",
":samples:tictactoe:common",
":samples:todo-android:app",
":trace-encoder",
":workflow-core",
":workflow-runtime",
":workflow-rx2",
":workflow-testing",
":workflow-tracing",
":workflow-ui:compose",
":workflow-ui:compose-tooling",
":workflow-ui:core-common",
":workflow-ui:core-android",
":workflow-ui:internal-testing-android",
":workflow-ui:container-common",
":workflow-ui:container-android",
":workflow-ui:radiography"
)
// Include the tutorial build so the IDE sees it when syncing the main project.
includeBuild("samples/tutorial")