-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
75 lines (62 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@file:Suppress("UnstableApiUsage")
import org.gradle.api.internal.FeaturePreviews
pluginManagement {
includeBuild("build-logic")
repositories {
google()
gradlePluginPortal()
mavenCentral()
mavenCentral {
content {
includeModule(
"org.jetbrains.kotlinx",
"kotlinx-collections-immutable-jvm"
)
}
}
maven {
name = "komputing/KHash GitHub Packages"
url = uri("https://maven.pkg.github.com/komputing/KHash")
credentials {
username = "token"
password =
"\u0039\u0032\u0037\u0034\u0031\u0064\u0038\u0033\u0064\u0036\u0039\u0061\u0063\u0061\u0066\u0031\u0062\u0034\u0061\u0030\u0034\u0035\u0033\u0061\u0063\u0032\u0036\u0038\u0036\u0062\u0036\u0032\u0035\u0065\u0034\u0061\u0065\u0034\u0032\u0062"
}
}
}
}
dependencyResolutionManagement {
enableFeaturePreview(FeaturePreviews.Feature.STABLE_CONFIGURATION_CACHE.name)
enableFeaturePreview(FeaturePreviews.Feature.TYPESAFE_PROJECT_ACCESSORS.name)
repositories {
google()
mavenCentral()
maven {
name = "komputing/KHash GitHub Packages"
url = uri("https://maven.pkg.github.com/komputing/KHash")
credentials {
username = "token"
password =
"\u0039\u0032\u0037\u0034\u0031\u0064\u0038\u0033\u0064\u0036\u0039\u0061\u0063\u0061\u0066\u0031\u0062\u0034\u0061\u0030\u0034\u0035\u0033\u0061\u0063\u0032\u0036\u0038\u0036\u0062\u0036\u0032\u0035\u0065\u0034\u0061\u0065\u0034\u0032\u0062"
}
}
}
versionCatalogs {
create("config") {
from(files("gradle/config.version.toml"))
}
}
}
include(":vaultAndroid")
include(":shared")
include(":core:domain")
include(":core:ui")
include(":core:design")
include(":core:crypto-kt")
include(":compass:core")
include(":features:home:ui")
include(":features:wallet:domain")
include(":features:wallet:ui")
include(":features:passcode:domain")
include(":features:passcode:ui")
rootProject.name = "speech"