-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (46 loc) · 1.23 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
kotlin_version = '1.3.50'
gradleVersion = '3.5.2'
compileSdk = 29
targetSdk = 29
minSdk = 23
core = '1.1.0'
navigation = '2.1.0'
navigationArgs = "1.0.0"
viewModel = "2.1.0"
coroutines = "1.3.2"
koin = "2.0.1"
archRoomExt = "2.2.2"
material = "1.1.0-beta01"
constraintLayout = "1.1.3"
picasso = "2.71828"
square = "1.7.10"
retrofit = "2.6.0"
//Test dependencies
junit = "4.12"
mockito = '2.1.0'
coroutinesTest = '1.3.2'
kluent = '1.55'
archTest = '1.1.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$navigationArgs"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}