-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (58 loc) · 2.03 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
configuration = [
package : "com.jenshen.tovisit",
buildToolsVersion: "24.0.0",
compileSdkVersion: 24,
minSdkVersion : 14,
targetSdkVersion : 24,
versionCode : 1,
versionName : "0.1"
]
libraries = [
supportVersion : "24.2.1",
/* http://google.github.io/dagger/ */
daggerVersion : "2.6",
/* https://github.com/ReactiveX/RxAndroid */
reactiveVersion : "2.0.0-RC1",
/* https://github.com/aNNiMON/Lightweight-Stream-API */
streamApiVersion : "1.1.1",
/* https://developers.google.com/android/guides/setup */
googleServicesApiVersion: "9.4.0",
/* https://github.com/square/leakcanary */
canaryLeakVersion : "1.4",
/* http://square.github.io/retrofit/ */
retrofitVersion : "2.1.0",
okhttp3Version : "3.3.1",
/* https://github.com/sockeqwe/mosby */
mosbyVersion : "2.0.1",
/* http://jakewharton.github.io/butterknife/ */
butterKnifeVersion : "8.4.0",
/*https://github.com/bumptech/glide*/
glideVersion : "3.7.0",
]
testingLibraries = [
junit : "4.12",
espressoVersion: "2.2.2"
]
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}