-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
39 lines (34 loc) · 936 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
37
38
39
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
ext {
minSdkVersion = 9
targetSdkVersion = 28
compileSdkVersion = 28
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7
}
ext.deps = [
// Compile dependencies
slf4j : 'org.slf4j:slf4j-api:1.7.25',
timber : 'com.jakewharton.timber:timber:4.7.1',
// Test dependencies testImplementation 'org.junit.vintage:junit-vintage-engine:5.3.1'
junit : 'org.junit.vintage:junit-vintage-engine:5.3.1',
festassert : 'org.easytesting:fest-assert-core:2.0M10',
festandroid: 'com.squareup:fest-android:1.0.8',
mockitocore: 'org.mockito:mockito-core:2.23.0',
robolectric: 'org.robolectric:robolectric:3.8',
]