forked from openMF/android-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
46 lines (44 loc) · 1.11 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
jcenter()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "AndroidClient"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":mifosng-android")
include(":core:common")
include(":core:network")
include(":core:data")
include(":core:designsystem")
include(":core:database")
include(":core:domain")
include(":core:datastore")
include(":core:model")
include(":core:testing")
include(":core:ui")
include(":feature:auth")
include(":feature:client")
include(":feature:checker-inbox-task")
include(":feature:collection-sheet")
include(":feature:groups")
include(":feature:settings")
include(":feature:center")
include(":feature:about")
include(":feature:report")
include(":feature:path-tracking")
include(":feature:note")