forked from BartoszJarocki/android-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (53 loc) · 1.61 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 {
repositories {
jcenter()
mavenCentral()
maven {
url "http://objectbox.net/beta-repo/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'com.github.promeg:android-git-sha-plugin:1.0.0'
classpath 'com.squareup.sqldelight:gradle-plugin:0.5.1'
classpath 'io.objectbox:objectbox-gradle-plugin:0.9.6'
}
// Exclude the version that the android plugin depends on.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "http://objectbox.net/beta-repo/"
}
}
}
ext {
supportLibraryVersion = "25.1.0"
okHttpVersion = "3.4.1"
compileSdkVersion = 25
targetSdkVersion = 25
minSdkVersion = 16
buildToolsVersion = "25.0.1"
rxVersion = "1.2.1"
retrofitVersion = "2.1.0"
playServicesVersion = "9.2.0"
picassoVersion = "2.5.2"
daggerVersion = "2.5"
butterknifeVersion = "8.4.0"
// test dependencies
espressoVersion = "2.2.2"
hamcrestVersion = "1.1"
leakCanaryVersion = "1.5"
dexmakerVersion = "1.0"
}
task clean(type: Delete) {
delete rootProject.buildDir
}