-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
53 lines (48 loc) · 1.38 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
import java.util.Properties
include(":core:testing")
include(":benchmark")
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
val properties = Properties()
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
maven {
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
credentials {
username = properties.getProperty("GITHUB_USER")
password = properties.getProperty("GITHUB_TOKEN")
}
}
}
}
rootProject.name = "cryptowallet"
include(":app")
include(":data:database")
include(":data:repositories")
include(":core:common")
include(":feature:createwallet:domain")
include(":feature:market:domain")
include(":feature:importwallet:domain")
include(":feature:homescreen:domain")
include(":feature:createwallet:ui")
include(":feature:importwallet:ui")
include(":feature:homescreen:ui")
include(":feature:market:ui")
include(":data:model")
include(":data:datastore")
include(":core:network")
include(":core:design")
include(":feature:userwallets:ui")
include(":feature:userwallets:domain")
include(":feature:sendcurrency:domain")
include(":feature:sendcurrency:ui")