-
Notifications
You must be signed in to change notification settings - Fork 32
/
build.gradle
156 lines (138 loc) · 6.73 KB
/
build.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
}
}
apply plugin: 'com.android.application'
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
//exclude 'AndroidManifest.xml'
}
compileSdkVersion 25
buildToolsVersion '25.0.3'
defaultConfig {
vectorDrawables.useSupportLibrary = true
applicationId "com.veken0m.bitcoinium"
minSdkVersion 14
targetSdkVersion 25
}
lintOptions {
abortOnError false
}
buildTypes {
release {
debuggable false
minifyEnabled true
//proguardFiles 'proguard.cfg'
}
debug {
debuggable true
minifyEnabled false
//proguardFiles 'proguard.cfg'
}
}
}
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/groups/public' }
}
dependencies {
final XCHANGE_VERSION = '4.2.1-SNAPSHOT'
final JACKSON_VERSION = "2.3.2"
final SUPPORT_VERSION = "25.3.0"
configurations.all {
transitive = false
//resolutionStrategy.cacheChangingModulesFor 0, 'seconds' // uncomment to force refresh SNAPSHOT dependencies
}
// Android Support dependencies
compile("com.android.support:appcompat-v7:$SUPPORT_VERSION")
compile("com.android.support:preference-v7:$SUPPORT_VERSION")
compile("com.android.support:support-v4:$SUPPORT_VERSION")
compile("com.android.support:support-compat:$SUPPORT_VERSION")
compile("com.android.support:support-annotations:$SUPPORT_VERSION") // @ColorInt
compile("com.android.support:support-fragment:$SUPPORT_VERSION")
compile("com.android.support:support-core-utils:$SUPPORT_VERSION") // NavUtils
compile("com.android.support:support-core-ui:$SUPPORT_VERSION") // SwipeRefreshLayout
compile("com.android.support:design:$SUPPORT_VERSION")
compile("com.android.support:support-vector-drawable:$SUPPORT_VERSION") // VectorDrawableCompat
compile("com.android.support:animated-vector-drawable:$SUPPORT_VERSION") // VectorDrawableCompat
// Other Dependencies
compile("com.jjoe64:graphview:4.2.1")
compile("com.robbypond:android-ColorPickerPreference:1.11.1")
// XChange Core
compile("org.knowm.xchange:xchange-core:$XCHANGE_VERSION")
//compile files("/libs/xchange-core-4.2.1-SNAPSHOT.jar")
// XChange dependencies
compile('com.github.mmazi:rescu:1.9.1-SNAPSHOT')
compile("com.fasterxml.jackson.core:jackson-annotations:$JACKSON_VERSION")
compile("com.fasterxml.jackson.core:jackson-core:$JACKSON_VERSION")
compile("com.fasterxml.jackson.core:jackson-databind:$JACKSON_VERSION")
compile('javax.ws.rs:jsr311-api:1.1.1')
compile('org.slf4j:slf4j-android:1.6.1-RC1')
compile('org.apache.commons:commons-lang3:3.4')
compile('commons-io:commons-io:2.4')
// XChange Exchange Modules
compile("org.knowm.xchange:xchange-anx:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitbay:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitcoinaverage:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitcoincharts:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitcoinde:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitcoinium:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-bitcurex:$XCHANGE_VERSION") <!-- shutdown -->
compile("org.knowm.xchange:xchange-bitfinex:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitkonan:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitmarket:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitso:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bitstamp:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bittrex:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bleutrade:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-blockchain:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-btc38:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-btcchina:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-btce:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-btcmarkets:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-btctrade:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-bter:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-campbx:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-ccex:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-cexio:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-chbtc:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-coinbase:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-coinmate:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-cryptofacilities:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-cryptonit:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-empoex:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-gatecoin:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-gdax:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-gemini:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-hitbtc:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-huobi:$XCHANGE_VERSION")
// compile("org.knowm.xchange:xchange-independentreserve:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-itbit:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-jubi:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-kraken:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-lakebtc:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-livecoin:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-loyalbit:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-mercadobitcoin:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-okcoin:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-openexchangerates:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-paymium:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-poloniex:$XCHANGE_VERSION")// exchange.getExchangeSymbols() broken
compile("org.knowm.xchange:xchange-quadrigacx:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-quoine:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-ripple:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-taurus:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-therock:$XCHANGE_VERSION")
compile("org.knowm.xchange:xchange-vaultoro:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-vircurex:$XCHANGE_VERSION")
//compile("org.knowm.xchange:xchange-yobit:$XCHANGE_VERSION")
}