-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (59 loc) · 1.79 KB
/
build.gradle
File metadata and controls
66 lines (59 loc) · 1.79 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
retrofitVersion = '2.9.0'
moshiVersion = '1.9.3'
koinVersion = "2.0.1"
coroutinesVersion = "1.3.2"
navigationVersion = "2.3.4"
lifecycleVersion = "2.2.0"
facebookShimmerVersion = "0.5.0"
shimmerRecycleviewVersion = "0.4.0"
coreKtxVersion = "1.3.2"
appcompatVersion = "1.2.0"
materialVersion = "1.3.0"
constraintlayoutVersion = "2.0.4"
legacySupportV4Version = "1.0.0"
jUnitVersion = "4.+"
jUnitExtVersion = "1.1.2"
espressoCoreVersion = "3.3.0"
okhttpVersion = '3.11.0'
archCoreVersion = "2.1.0"
coroutinesTestVersion = "1.3.5"
mockkVersion = "1.9"
androidxTestVersion = "1.2.0"
androidxCoreVersion = "1.0.2"
buildToolsVersion = "28.0.3"
androidxCoreVersion = "1.1.0-rc02"
androidxCompatVersion = "1.1.0-rc01"
androidxFragmentVersion = "1.1.0-rc01"
coreVersion = "1.3.0-alpha03"
extJUnitVersion = "1.1.2-alpha03"
runnerVersion = "1.3.0-alpha03"
rulesVersion = "1.3.0-alpha03"
espressoVersion = "3.3.0-alpha03"
robolectricVersion = "4.3.1"
espressoVersion = "3.2.0"
}
buildscript {
ext.kotlin_version = "1.4.31"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0"
// 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
}