forked from rip32700/trust-wallet-android
-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
53 lines (49 loc) · 1.26 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.2.30"
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "io.realm:realm-gradle-plugin:5.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
// needed for pincode Lollipin
maven {
url "https://github.com/omadahealth/omada-nexus/raw/master/release"
}
}
}
project.ext {
retrofitVersion = "2.3.0"
okhttpVersion = "3.9.0"
picassoVersion = "2.5.2"
supportVersion = "27.1.0"
web3jVersion = "3.0.1-android"
gethVersion = "1.8.0"
gsonVersion = "2.8.2"
rxJavaVersion = "2.1.6"
rxAndroidVersion = "2.0.1"
daggerVersion = "2.13"
erc681Version = "0.36"
jetbrainsAnnotationsVersion = "15.0"
junitVersion = "4.12"
mockitoCoreVersion = "2.15.0"
roomVersion = "1.1.0"
}
task clean(type: Delete) {
delete rootProject.buildDir
}