-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
37 lines (31 loc) · 973 Bytes
/
settings.gradle.kts
File metadata and controls
37 lines (31 loc) · 973 Bytes
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
rootProject.name = "brd-mobile"
include(
"cosmos-core",
"cosmos-brd-api-client",
"cosmos-websocket",
"cosmos-bundled",
"cosmos-support",
"cosmos-preferences",
"cosmos-bakers-api-client"
)
include("cosmos-exchange")
include(
"brd-android:app",
"brd-android:app-core",
"brd-android:theme"
)
include("cosmos-address-resolver")
includeBuild("external/walletkit/WalletKitJava") {
dependencySubstitution {
substitute(module("com.breadwallet.core:corecrypto-android"))
.with(project(":corecrypto-android"))
}
}
includeBuild("external/redacted-compiler-plugin") {
dependencySubstitution {
substitute(module("dev.zacsweers.redacted:redacted-compiler-gradle-plugin"))
.with(project(":redacted-compiler-plugin-gradle"))
substitute(module("dev.zacsweers.redacted:redacted-compiler-plugin-annotations"))
.with(project(":redacted-compiler-plugin-annotations"))
}
}