-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathsettings.gradle
More file actions
46 lines (44 loc) · 1.25 KB
/
settings.gradle
File metadata and controls
46 lines (44 loc) · 1.25 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
pluginManagement {
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
}
include ':testhelper'
include ':view'
include 'bitlib'
include 'lt-api'
include 'walletmodel'
include 'walletcore'
include 'wapi'
include 'mbwlib'
//include 'backuputil'
//on the servers, we don't want to build android projects
// nano /etc/profile.d/env.sh
// export MYCELIUM_BUILD_SYSTEM=server
if (System.getenv()['MYCELIUM_BUILD_SYSTEM'] == 'server') {
getLogger().warn('MYCELIUM_BUILD_SYSTEM==server - disabling Android projects ')
} else {
include 'wallet-android-modularization-tools:modularization-lib'
include 'mbw'
include 'trezor'
include 'libs:nordpol'
include 'btchip'
include 'LVL'
// include 'backuputil'
include 'wallet-console'
include 'androidfioserializationprovider'
project(':androidfioserializationprovider').projectDir = file('fiosdk_kotlin/androidfioserializationprovider')
include 'fiosdk'
project(':fiosdk').projectDir = file('fiosdk_kotlin/fiosdk')
}