-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
61 lines (55 loc) · 1.76 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.61'
ext {
//Version
build_version_name = "1.0.0"
build_version_code = 1
//SDK Version
sdk_min_version = 19
sdk_target_version = 28
sdk_compile_version = 28
glide_version = '4.11.0'
appcompat_version = '1.1.0'
lifecycle_version = "2.2.0"
androidx_stable_version = "1.2.0-alpha01"
androidx_constraint_layout_version = "2.0.0-beta4"
logging_interceptor_version = "4.3.1"
ktx_version = "1.0.2"
ktx_fragment_version = "1.2.2"
retrofit_version = "2.4.0"
rxJavaVersion = '2.1.1'
android_material_version = "1.2.0-alpha05"
gson_version = "2.8.5"
junit_version = '4.12'
test_runner_version = '1.2.0'
test_espresso_version = '3.2.0'
jraska_version = "1.1.0"
hamcrest_version = "1.3"
mockito_version = "2.21.0"
dagger_version = "2.23.2"
arch_runtime_version = "1.1.1"
arch_version = "1.1.1"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.5.2.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "http://dl.bintray.com/jetbrains/spek" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}