-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (42 loc) · 1.13 KB
/
build.gradle
File metadata and controls
49 lines (42 loc) · 1.13 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
classpath "io.realm:realm-gradle-plugin:3.0.0"
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.4'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
}
// Exclude the version that the android plugin depends on.
configurations.classpath.exclude group: 'com.android.tools.external.lombok'
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
subprojects {
ext.globalCompileSdkVersion = 25
ext.globalBuildToolsVersion = "25.0.2"
ext.globalMinSdkVersion = 16
ext.globalTargetVersion = 25
ext.moxy = "1.4.6"
ext.alligator = "v0.1.0"
ext.support = "25.3.0"
ext.playServices = "10.2.1"
ext.rxjava = "2.0.1"
ext.rxbinding = "2.0.0"
ext.dagger2 = "2.10"
ext.lombok = "1.16.14"
ext.retrofit = "2.2.0"
ext.timber = "4.3.1"
ext.okhttp = "3.4.1"
ext.securePrefs = "0.1.4"
ext.adapterDelegates = "3.0.1"
}