-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
70 lines (59 loc) · 1.95 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
60
61
62
63
64
65
66
67
68
69
70
// 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.4.0-alpha7'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.google.firebase:firebase-plugins:1.0.4'
classpath 'io.realm:realm-gradle-plugin:3.1.3'
classpath 'com.google.cloud.tools:endpoints-framework-gradle-plugin:1.0.0-beta7'
classpath 'com.google.guava:guava:20.0'
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
//classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.2'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
classpath "com.jaredsburrows:gradle-license-plugin:0.4.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://jitpack.io" }
maven { url 'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
distributionUrl = distributionUrl.replace("bin", "all")
}
ext {
minSdk = 16
targetSdk = 25
compileSdk = 25
buildTools = '25.0.3'
javaSource = JavaVersion.VERSION_1_8
javaTarget = JavaVersion.VERSION_1_8
rxJava2_version = '2.1.0'
rxJava2Android_version = '2.0.1'
firebase_version = '10.2.4'
playServices_version = '10.2.4'
supportLibs_version = '25.3.1'
multidex_version = '1.0.1'
constraintLayout_version = '1.0.2'
butterKnife_version = '8.5.1'
timber_version = '4.5.1'
conductor_version = '2.1.2'
epoxy_version = '2.0.0'
flexbox_version = '0.3.0-alpha3'
annimonStream_version = '1.1.7'
junit_version = '4.12'
findbugs_version = '3.0.1'
espressoCore_version = '2.2.2'
}