-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathbuild.gradle
49 lines (43 loc) · 1.31 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
configuration = [
compileVersion : 23,
buildToolsVersion : "23.0.2",
minSdk : 16,
targetSdk : 23,
version_code : 1,
version_name : "0.1"
]
libraries = [
dagger : "2.4",
javax_annotation : "10.0-b28",
supportVersion : "23.3.0",
butterknife : "7.0.1",
circleimageview : "2.0.0",
picasso : "2.5.2",
lombok : "1.16.8",
retrofit : "2.0.2",
okhttp : "3.2.0",
realm : "0.87.2",
guava : "19.0"
]
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0-beta1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// 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
}