forked from JakeWharton/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (37 loc) · 1.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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
allprojects {
repositories {
mavenCentral()
jcenter()
}
}
ext {
minSdkVersion = 9
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.1'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
lintVersion = '25.3.0'
}
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:${lintVersion}",
lintchecks : "com.android.tools.lint:lint-checks:${lintVersion}",
// Lint test dependencies
lint : "com.android.tools.lint:lint:${lintVersion}",
linttests : "com.android.tools.lint:lint-tests:${lintVersion}",
]