-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (39 loc) · 954 Bytes
/
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
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "com.android.tools.build:gradle:$Version.androidGradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$Version.kotlin"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
ext {
minSdk = 21
targetSdk = 27
buildToolsVersion = '26.0.3'
compileSdkVersion = 27
supportLibVersion = '27.0.2'
okHttpVersion = '3.9.0'
jacksonCoreVersion = '2.9.4'
rxjava2Version = '2.1.9'
rxAndroidVersion = '2.0.1'
daggerVersion = '2.12'
//Tests
jUnitVersion = '4.12'
espressoVersion = '3.0.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}