-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
83 lines (71 loc) · 2.06 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
76
77
78
79
80
81
82
83
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
/**
* ANDROID VERSION
*/
compile_sdk_version = 29
target_sdk_version = 29
min_sdk_version = 21
build_tool_version = "29.0.3"
kotlin_version = "1.4.10"
/**
* TEST LIBRARIES
*/
junit_version = "4.13"
arch_core_testing_version = "2.1.0"
androidx_test_runner_version = "1.2.0"
androidx_espresso_core_version = "3.3.0"
mockito = "2.28.2"
androidx_test_rules_version = "1.1.1"
/**
* ANDROID UI EXTRAS
*/
androidx_recyclerview_version = "1.1.0"
androidx_cardview_version = "1.0.0"
androidx_lifecycle_version = "2.2.0"
androidx_contraintlayout_version = "2.0.4"
androidx_appcompat_version = "1.2.0"
androidx_core_ktx_version = "1.3.2"
androidx_media_version = "1.2.0"
build_gradle_version = '4.0.1'
test_ext_junit = '1.1.2'
material_version = "1.2.1"
/**
* JETBRAINS - ANNOTATION VERSION
*/
jetbrains_annotation_version = "13.0"
lifecycle_version = "2.2.0"
/**
* ANDROID COMPOSITION
*/
support_library_version = "28.0.0"
/**
* GRADLE VERSION PLUGIN
*/
gradle_dependencies_versions = "0.29.0"
/**
* LOGGING
*/
timber_version = "4.7.1"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}