-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (56 loc) · 1.67 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.3-2'
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'com.google.gms:google-services:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 16
targetSdkVersion = 26
compileSdkVersion = 25
buildToolsVersion = '25.0.1'
supportLibraryVersion = '25.3.1'
daggerVersion = '2.5'
retrofitVersion = '2.2.0'
rxJavaVersion = '2.0.6'
rxAndroidVersion = '2.0.1'
butterknifeVersion = '8.2.1'
loggerVersion = '3.3.1'
timberVersion = '4.1.2'
playServiceVersion = '11.0.4'
calligraphyVersion = '2.2.0'
annotationVersion = '10.0-b28'
routeVersion = '1.1.0'
picassoVersion = '2.5.2'
glideVersion = '3.7.0'
komenskyValidation = '0.9.4'
facebookVersion = '4.15.0'
crashVersion = '2.6.2'
junitVersion = '4.12'
lottieVersion = '2.1.0'
jobdispatcherVersion = '0.6.0'
dialogProgressVersion = '0.7'
multidexVersion = '1.0.1'
constraintVersion = '1.0.2'
}