-
Notifications
You must be signed in to change notification settings - Fork 39
/
build.gradle
45 lines (40 loc) · 1.07 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
test_runner = "1.0.0"
test_rules = "1.1.1"
espresso = "3.1.1"
picasso = "2.71828"
mockito = "2.23.4"
coroutine = "1.0.0"
retrofit = "2.4.0"
moshi = "1.7.0"
retrofit_coroutine_adapter = "0.9.2"
picasso = "2.71828"
material = "1.0.0"
room_version = "2.1.0-alpha03"
lifecycle_version = "2.0.0"
okHttpVersion = '3.11.0'
}
buildscript {
ext.kotlin_version = '1.3.0'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-allopen:$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
}