-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (61 loc) · 1.48 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
targetSdkVersion = 29
minSDKVersion = 24
compileSdkVersion = 29
renderscript = 24
buildtoolsVersion = '29.0.3'
//kotlin
kotlin_coroutines = '1.2.1'
kotlin_coroutines_android = '1.2.1'
//androidx
androidx_library = '1.1.0'
androidx_preference = '1.1.1'
androidx_corektx = '1.3.0'
androidx_constraint = '1.1.3'
androidx_viewmodel = '2.2.0'
androidx_library_lifecycle_extensions = '1.1.1'
androidx_navigation = '2.2.2'
//DI dagger2
dagger = '2.28.1'
//Dialog
material_dialog_core = '3.3.0'
//UI
material = '1.1.0'
//barcode vision
play_services_vision = '19.0.0'
//glide
glide = '4.11.0'
//Permissions
permissions = '4.6.0'
//CameraX
camerax_version = '1.0.0-beta04'
camerax_view = '1.0.0-alpha11'
robo_electric = '4.3.1'
//Tests
junit = '4.12'
androidx_junit = '1.1.1'
espresso_core = '3.1.1'
mockito = '3.3.0'
mockito_kotlin = '2.2.0'
}