-
Notifications
You must be signed in to change notification settings - Fork 107
/
build.gradle
59 lines (52 loc) · 1.7 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
//ANDROID
androidBuildToolsVersion = '27.0.3'
androidMinSdkVersion = 19
androidTargetSdkVersion = 26
androidCompileSdkVersion = 26
testInstrumentationRunner = 'android.support.test.runner.AndroidJUnitRunner'
versionName = '1.0.5'
//DEPENDENCIES
kotlinVersion = '1.2.31'
androidSupportVersion = '27.1.0'
rxVersion = '2.1.6'
rxAndroidVersion = '2.0.1'
constraintLayoutVersion = '1.1.0-beta3'
mosbyVersion = '3.0.4'
daggerVersion = '2.11'
frescoVersion = '1.7.1'
//TEST
mockitoVersion = '2.8.47'
mockitoKotlinVersion = '1.5.0'
junitVersion = '4.12'
robolectricVersion = '3.5.1'
testRunnerVersion = '1.0.1'
}
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'io.fabric.tools:gradle:1.+'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}