forked from kiwix/kiwix-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
52 lines (48 loc) · 1.34 KB
/
build.gradle.kts
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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.4.1")
classpath("com.dicedmelon.gradle:jacoco-android:0.1.4")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext {
set("androidGradlePluginVersion", "3.4.1")
set("testdroidGradlePluginVersion", "2.63.0")
set("appCompatVersion", "1.0.2")
set("materialVersion", "1.0.0")
set("annotationVersion", "1.0.0")
set("cardViewVersion", "1.0.0")
set("rxJavaVersion", "2.2.5")
set("rxAndroidVersion", "2.1.0")
set("okHttpVersion", "3.12.1")
set("retrofitVersion", "2.5.0")
set("javaxAnnotationVersion", "1.3.2")
set("daggerVersion", "2.21")
set("inkPageIndicatorVersion", "1.3.0")
set("constraintLayoutVersion", "1.1.3")
set("butterKnifeVersion", "10.1.0")
set("espressoVersion", "3.1.1")
set("apacheCommonsVersion", "2.6")
set("multidexVersion", "2.0.1")
set("jUnitVersion", "4.12")
set("mockitoVersion", "2.24.5")
set("powerMockVersion", "1.6.6")
set("powerMockJUnitVersion", "1.7.4")
set("baristaVersion", "2.7.1")
set("kotlinVersion", "1.3.31")
set("objectboxVersion", "2.3.4")
}
allprojects {
repositories {
google()
jcenter()
}
}
tasks.create<Delete>("clean") {
delete(rootProject.buildDir)
}