forked from owncloud/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
66 lines (56 loc) · 1.38 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
buildscript {
ext {
// SDK
sdkCompileVersion = 29
sdkMinVersion = 21
sdkTargetVersion = 29
// Android jetpack
archLifecycleVersion = "2.1.0"
roomVersion = "2.2.6"
appCompat = "1.2.0"
sqliteVersion = "2.1.0"
lifecycleLiveData = "2.3.0"
biometricVersion="1.0.1"
// Kotlin
kotlinVersion = "1.4.31"
coroutinesVersion = "1.4.2"
// Koin
koinVersion = "2.1.5"
mockkVersion = '1.10.6'
// Testing
junitVersion = "4.13.2"
extJunitVersion = '1.1.2'
androidTestVersion = '1.3.0'
espressoTestVersion = '3.3.0'
fragmentTestVersion = "1.1.0"
uiAutomatorTestVersion = "2.2.0"
annotationTestVersion = "1.1.0"
// Extensions
ktxVersion = "1.1.0"
// KTX extensions
ktxCoreVersion = "1.3.2"
ktxViewModelVersion = "2.3.0"
ktxFragmentVersion = "1.3.1"
ktxLiveData = "2.1.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
ext {
androidX = '1.0.0'
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}