forked from JakeWharton/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (32 loc) · 845 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
allprojects {
repositories {
mavenCentral()
}
}
ext {
minSdkVersion = 9
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = '24.0.0'
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
// Test dependencies
junit : 'junit:junit:4.11',
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'
]