forked from erdo/android-fore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
30 lines (23 loc) · 887 Bytes
/
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
rootProject.name = "mvvm-examples"
// java
include(":fore-jv-core")
include(":fore-jv-network")
// java android
include(":fore-jv-android") // everything
include(":fore-jv-android-core")
include(":fore-jv-android-adapters")
include(":fore-jv-android-network")
// kotlin
include(":fore-kt-core")
include(":fore-kt-network")
// kotlin android
include(":fore-kt-android") // everything
include(":fore-kt-android-core")
include(":fore-kt-android-adapters")
include(":fore-kt-android-network")
include(":fore-kt-android-compose")
include(":example-kt-01reactiveui", ":example-kt-02coroutine", "example-kt-03adapters",
":example-kt-04retrofit", ":example-kt-07apollo", ":example-kt-07apollo3", ":example-kt-08ktor",
":example-jv-01reactiveui", ":example-jv-02threading", ":example-jv-03adapters",
":example-jv-04retrofit", ":example-jv-06db")
include ':helpers'