-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
82 lines (75 loc) · 2.45 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// SDK and Tools
compileSdkVersion = 28
minSdkVersion = 23
targetSdkVersion = 28
buildToolsVersion = '28.0.3'
// App dependencies
androidGradlePluginVersion = '3.2.1'
appCompatVersion = '1.0.2'
archCoreTestingVersion = '2.0.0'
arrowVersion = '0.8.2'
assertjVersion = '3.8.0'
annotationsVersion = '28.0.0'
constraintLayoutVersion = '2.0.0-alpha3'
dokkaVersion = '0.9.17'
daggerVersion = '2.16'
daggerCompilerVersion = '2.16'
daggerAndroidProcessorVersion = '2.16'
espressoVersion = '3.1.0'
fuelVersion = '1.15.1'
glideVersion = '4.8.0'
gsonVersion = '2.8.5'
googleTruthVersion = '0.42'
javaxInjectVersion = '1'
jUnitVersion = '4.12'
jUnit5Version = '5.3.1'
kotlinVersion = '1.3.11'
kotlinCoroutinesVersion = '1.1.0'
kotlinxSerializationVersion = '0.9.1'
ktxVersion = '1.0.1'
kotlinTestVersion = '3.1.11'
lifecycleVersion = '2.0.0'
legacySupportVersion = '1.0.0'
materialVersion = '1.0.0'
mockkVersion = '1.8.13.kotlin13'
okHttpVersion = '3.11.0'
okHttpLoggingInterceptorVersion = '3.10.0'
retrofitVersion = '2.5.0'
retrofitCoroutineAdapterVersion = '0.9.2'
roomVersion = '2.0.0'
robolectricVersion = '4.0'
timberVersion = '4.7.1'
testExtVersion = '1.0.0'
testRunnerVersion = '1.1.0'
testRulesVersion = '1.1.0'
testCoreVersion = '1.0.0'
testExtJUnitVersion = '1.0.0'
testExtTruthVersion = '1.0.0'
}
repositories {
google()
jcenter()
maven { url "https://kotlin.bintray.com/kotlin-dev" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
// 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
//}
apply plugin: 'kotlin'
apply plugin: 'kotlinx-serialization'