-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
53 lines (43 loc) · 1.38 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
// 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:1.3.1'
// 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
}
ext {
minSdkVersion = 9
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.2'
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8
checkstyleVersion = '6.1.1'
}
ext.deps = [
// Test Dependencies
junit : 'junit:junit:4.12',
festassert : 'org.easytesting:fest-assert-core:2.0M10',
festandroid : 'com.squareup:fest-android:1.0.7',
mockitocore : 'org.mockito:mockito-core:1.9.5',
robolectric : 'org.robolectric:robolectric:3.0',
// Lint Dependencies
lintapi : 'com.android.tools.lint:lint-api:24.3.1',
lintchecks : 'com.android.tools.lint:lint-checks:24.3.1',
// jetbrains
jbannotations: 'org.jetbrains:annotations:13.0',
// dependence
gson : 'com.google.code.gson:gson:2.5'
]