-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle
75 lines (70 loc) · 2.26 KB
/
settings.gradle
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://jcenter.bintray.com" }
maven { url 'https://repo1.maven.org/maven2' }
maven {
def github_username = System.getenv('github_username')
def github_token = System.getenv('github_token')
name = "GitHubPackages_Cartera"
url = uri("https://maven.pkg.github.com/dydxprotocol/cartera-android")
if (github_username != null && github_token != null) {
credentials {
username github_username
password github_token
}
}
}
maven {
def github_username = System.getenv('github_username')
def github_token = System.getenv('github_token')
name = "GitHubPackages_Abacus"
url = uri("https://maven.pkg.github.com/dydxprotocol/v4-abacus")
if (github_username != null && github_token != null) {
credentials {
username github_username
password github_token
}
}
}
mavenLocal()
}
}
rootProject.name = 'native-android'
//Dependencies may look "down" (unenforced)
include ':v4:app'
include ':v4:core'
include ':v4:feature:trade'
include ':v4:feature:profile'
include ':v4:feature:portfolio'
include ':v4:feature:market'
include ':v4:feature:onboarding'
include ':v4:integration:chart'
include ':v4:integration:cosmos'
include ':v4:integration:starkex'
include ':v4:integration:javascript'
include ':v4:common'
include ':v4:integration:dydxCartera'
include ':v4:integration:dydxStateManager'
include ':v4:utilities'
include ':v4:platformUI'
include ':v4:feature:shared'
include ':v4:feature:newsalerts'
include ':v4:feature:receipt'
include ':v4:feature:workers'
include ':v4:feature:transfer'
include ':v4:integration:web3'
include ':v4:integration:analytics'
include ':v4:integration:statsig'
include ':v4:integration:fcm'
include ':v4:feature:vault'