forked from codecov/example-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (27 loc) · 801 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
}
}
ext {
configCompileSdkVersion = 23
configTargetSdkVersion = 23
configBuildToolsVersion = '23.0.3'
supportVersion = '23.1.1'
support = [annotations: "com.android.support:support-annotations:$supportVersion",
appCompat : "com.android.support:appcompat-v7:$supportVersion"]
assertJCore = 'org.assertj:assertj-core:1.7.1'
junit = 'junit:junit:4.12'
supportTest = [espressoCore: 'com.android.support.test.espresso:espresso-core:2.2.2',
rules : 'com.android.support.test:rules:0.5']
}
allprojects {
repositories {
jcenter()
}
project.version = '0.1.0'
}