forked from maoruibin/TranslateApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (45 loc) · 1.25 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
ext {
configuration = [
package : "name.gudong.translate",
buildToolsVersion : "23.0.2",
compileVersion : 23,
minSdk : 19,
targetSdk : 23,
version_code : 06,
version_name : "0.6"
]
libraries = [
supportVersion : "23.2.0",
dagger : "2.0",
rxandroid : "1.0.1",
retrofit : "2.0.0-beta2",
butterknife : "7.0.1",
recycler_animators : "2.0.0",
javax_annotation : "10.0-b28",
logger : "1.4",
retrolambda : "2.0.6",
once : "0.5.0"
]
testingLibraries = [
junit : "4.12"
]
}
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta6'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.2.4'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}