forked from philipplackner/IvyWallet-PL_Version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
53 lines (53 loc) · 1.3 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
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "Ivy Wallet"
include(":app")
include(":common:main")
include(":common:android-test")
include(":common:test")
include(":design-system")
include(":main:bottom-bar")
include("main:accounts")
include("main:home")
include("main:more-menu")
include("main:customer-journey")
include(":categories")
include(":transaction")
include(":onboarding")
include(":main:impl")
include(":widgets")
include(":app-locked")
include(":android:common")
include(":android:billing")
include(":android:notifications")
include(":android:file-system")
include(":core:data-model")
include(":core:domain")
include(":core:exchange-provider")
include(":core:ui")
include(":core:persistence")
include(":network")
include(":resources")
include(":navigation")
include(":debug")
include(":formula:domain")
include(":formula:persistence")
include(":formula:ui")
include(":parser")
include(":math")
include(":drive:google-drive")
include(":settings")
include(":backup:base")
include(":backup:old")
include(":backup:impl")
include(":backup:api")
include(":photo-frame")
include(":sync")
include(":exchange-rates")