forked from ritik2017/kiwix-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (42 loc) · 1016 Bytes
/
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext {
androidGradlePluginVersion = '3.2.1'
testdroidGradlePluginVersion = '2.63.0'
supportLibraryVersion = '27.1.1'
rxJavaVersion = '2.2.2'
rxAndroidVersion = '2.1.0'
okHttpVersion = '3.11.0'
retrofitVersion = '2.4.0'
javaxAnnotationVersion = '1.3.2'
daggerVersion = '2.16'
inkPageIndicatorVersion = '1.3.0'
constraintLayoutVersion = '1.1.3'
butterKnifeVersion = '8.8.1'
espressoVersion = '3.0.2'
apacheCommonsVersion = '2.6'
multidexVersion = '1.0.3'
jUnitVersion = '4.12'
mockitoVersion = '2.19.1'
powerMockVersion = '1.6.6'
powerMockJUnitVersion = '1.7.4'
baristaVersion = '2.5.0'
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}