forked from owncloud/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
75 lines (64 loc) · 1.62 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
buildscript {
ext {
// SDK
sdkCompileVersion = 28
sdkMinVersion = 21
sdkTargetVersion = 28
// Android jetpack
archLifecycleVersion = "2.1.0"
roomVersion = "2.2.2"
appCompat = "1.1.0"
sqliteVersion = "2.0.1"
lifecycleLiveData = "2.0.0"
biometricVersion="1.0.1"
// Kotlin
kotlinVersion = "1.3.72"
coroutinesVersion = "1.3.2"
// Koin
koinVersion = "2.0.1"
mockkVersion = "1.9.3"
// Testing
junitVersion = "4.12"
extJunitVersion = "1.1.1"
androidTestVersion = "1.2.0"
mockitoVersion = "2.24.0"
espressoTestVersion = "3.2.0"
fragmentTestVersion = "1.1.0"
uiAutomatorTestVersion = "2.2.0"
annotationTestVersion = "1.1.0"
// Extensions
ktxVersion = "1.1.0"
// KTX extensions
ktxCoreVersion = "1.1.0"
ktxViewModelVersion = "2.2.0-alpha01"
ktxFragmentVersion = "1.0.0"
ktxLiveData = "2.1.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion"
}
}
ext {
androidX = '1.0.0'
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}
tasks.withType(Test) {
/// increased logging for tests
testLogging {
events "passed", "skipped", "failed"
}
}