forked from Ivy-Apps/ivy-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
49 lines (47 loc) · 1.28 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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
gradlePluginPortal()
}
}
rootProject.name = "IvyWallet"
include(":app")
include(":ivy-base")
include(":ivy-common-ui")
include(":ivy-data")
include(":ivy-design")
include(":ivy-domain")
include(":ivy-navigation")
include(":ivy-resources")
include(":ivy-testing")
include(":ivy-widget-base")
include(":screen-accounts")
include(":screen-attributions")
include(":screen-balance")
include(":screen-budgets")
include(":screen-categories")
include(":screen-contributors")
include(":screen-exchange-rates")
include(":screen-features")
include(":screen-home")
include(":screen-import-data")
include(":screen-loans")
include(":screen-main")
include(":screen-onboarding")
include(":screen-piechart")
include(":screen-planned-payments")
include(":screen-releases")
include(":screen-reports")
include(":screen-search")
include(":screen-settings")
include(":screen-transaction")
include(":screen-transactions")
include(":temp-legacy-code")
include(":temp-old-design")
include(":widget-add-transaction")
include(":widget-balance")
include(":ivy-data-testing")