-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsettings.gradle
More file actions
49 lines (44 loc) · 1.69 KB
/
settings.gradle
File metadata and controls
49 lines (44 loc) · 1.69 KB
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
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "fearlessWallet"
include ':feature-crowdloan-impl'
include ':feature-crowdloan-api'
include ':feature-staking-impl'
include ':feature-staking-api'
include ':feature-wallet-impl'
include ':feature-wallet-api'
include ':feature-onboarding-impl'
include ':feature-onboarding-api'
include ':app', ':test-shared', ':common', ':feature-splash', 'core-db', 'core-api'
include ':runtime'
include ':feature-account-api'
include ':feature-account-impl'
include ':feature-polkaswap-api'
include ':feature-polkaswap-impl'
include ':feature-success-api'
include ':feature-success-impl'
include ':feature-soracard-api'
include ':feature-soracard-impl'
include ':runtime-permission'
include ':feature-tonconnect-api'
include ':feature-tonconnect-impl'
include ':feature-walletconnect-api'
include ':feature-walletconnect-impl'
include ':feature-nft-api'
include ':feature-nft-impl'
include ':feature-liquiditypools-api'
include ':feature-liquiditypools-impl'
// Optionally map fearless-utils-Android from GitHub as a source dependency.
// Enable by setting -PUSE_REMOTE_UTILS=true or USE_REMOTE_UTILS=true in the environment.
def useRemoteUtils = (
providers.gradleProperty("USE_REMOTE_UTILS").orNull?.toBoolean() ?: false
) || (System.getenv("USE_REMOTE_UTILS") == "true")
if (useRemoteUtils) {
println("Including remote fearless-utils from GitHub via sourceControl")
sourceControl {
gitRepository("https://github.com/soramitsu/fearless-utils-Android.git") {
producesModule("jp.co.soramitsu.fearless-utils:fearless-utils")
}
}
} else {
println("USE_REMOTE_UTILS not set; using published artifacts for fearless-utils")
}