-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
60 lines (51 loc) · 1.46 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
}
}
allprojects {
repositories {
jcenter()
}
ext {
minSdkVersion = 15
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
versionName="1.0"
versionCode=1
appId ="com.vpaliy.xyzreader"
testInstrumentationRunner= "android.support.test.runner.AndroidJUnitRunner"
androidSupportVersion = "25.3.1"
daggerVersion = '2.9'
rxJavaVersion = '1.1.8'
rxAndroidVersion = '1.2.1'
rxRelayVersion='2.0.0'
glideVersion = "3.7.0"
constraintLayoutVersion="1.0.2"
butterKnifeVersion = "8.5.1"
schematicVersion="0.6.3"
retrofitVersion="2.2.0"
retrofitConverterVersion="2.1.0"
retrofitAdapterVersion="2.1.0"
gsonVersion = '2.7'
okHttpVersion = '2.5.0'
/* Testing versions */
robolectricVersion = '3.1.1'
jUnitVersion = '4.12'
testRunnerVersion='0.5'
assertJVersion = '1.7.1'
mockitoVersion = '2.7.13'
dexmakerVersion = '1.0'
espressoVersion = '2.2'
testingSupportLibVersion = '0.1'
rulesVersion = "0.5"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}