-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
76 lines (71 loc) · 2.24 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
/* Android Libraries */
compileSdkVersion = 29
minSdkVersion = 26
targetSdkVersion = 29
appCompatVersion = '1.1.0'
constraintLayoutVersion = '1.1.3'
fragmentVersion = '1.1.1'
leanbackVersion = '1.0.0'
coroutinesVersion = "1.3.2"
kotlinxCoreVersion = '1.2.0'
lifecycleVersion = '2.2.0'
recyclerViewVersion = '1.1.0'
rvSelectionVersion = '1.1.0-rc01'
kotlinVersion = '1.3.70'
navigationVersion = '2.2.1'
gsonVersion = '2.6.2'
okhttp = '3.10.0'
retrofit = '2.6.0'
daggerSupport = '2.22.1'
androidDagger = '2.23.2'
daggerCompiler = '2.25.2'
multidex = '2.0.1'
LeanbackExoPlayerVersion = '2.7.3'
ExoPlayerVersion = '2.10.0'
RxJavaVersion = '3.0.0'
/*ANKO*/
ankoVersion = '0.10.8'
/*sdp*/
sdpAndroid = '1.0.6'
/*Testing dependencies*/
junitVersion = '4.12'
junitJupiter = '5.5.2'
junitPlatform = '1.5.2'
workVersion = '2.3.3'
espressoVersion = '3.2.0'
coreTestingVersion = '2.1.0'
testExtJunit = '1.1.1'
mockitoVersion = "2.25.0"
mockitoInlineVersion = "2.13.0"
mockwebserverVersion = "3.8.1"
testRulesVersion = "1.2.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
maven { url "https://oss.jfrog.org/libs-snapshot" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}