This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 666
/
settings.gradle.kts
56 lines (54 loc) · 1.59 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
50
51
52
53
54
55
56
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(":ci-actions:base")
include(":ci-actions:compose-stability")
include(":ci-actions:issue-assign")
include(":ci-actions:issue-create-comment")
include(":ci-actions:pr-description-check")
include(":screen:accounts")
include(":screen:attributions")
include(":screen:balance")
include(":screen:budgets")
include(":screen:categories")
include(":screen:contributors")
include(":screen:disclaimer")
include(":screen:edit-transaction")
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:transactions")
include(":shared:base")
include(":shared:common-ui")
include(":shared:data:core")
include(":shared:data:core-testing")
include(":shared:data:model")
include(":shared:data:model-testing")
include(":shared:domain")
include(":shared:ui:core")
include(":shared:ui:navigation")
include(":shared:ui:testing")
include(":temp:legacy-code")
include(":temp:old-design")
include(":widget:add-transaction")
include(":widget:balance")
include(":widget:shared-base")