-
Notifications
You must be signed in to change notification settings - Fork 140
/
build.gradle
executable file
·57 lines (52 loc) · 1.9 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 15
targetSdkVersion = 26
compileSdkVersion = 26
buildToolsVersion = "24.0.2"
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8
}
def supportVersion = "24.2.0"
ext.deps = [
supportAppCompat : "com.android.support:appcompat-v7:$supportVersion",
supportDesign : "com.android.support:design:$supportVersion",
butterknife : "com.jakewharton:butterknife:8.4.0",
butterknifeCompiler: "com.jakewharton:butterknife-compiler:8.4.0",
// retrofit2 : "com.squareup.retrofit2:retrofit:2.1.0",
// rxjava : "io.reactivex:rxjava:x.y.z",
// converterGson : "com.squareup.retrofit2:converter-gson:2.0.2",
// adapterRxjava : "com.squareup.retrofit2:adapter-rxjava:2.0.2",
// rxandroid : "io.reactivex:rxandroid:1.2.1",
androidasync : "com.koushikdutta.async:androidasync:2.+",
timber : 'com.jakewharton.timber:timber:4.1.2',
rxbus : "com.hwangjr.rxbus:rxbus:1.0.5",
]