Skip to content

Commit acf5196

Browse files
authored
Update build.gradle
1 parent fee54fa commit acf5196

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

loading-skeleton/build.gradle

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33

4-
apply plugin: 'com.github.dcendents.android-maven'
5-
64
//group = GROUP
75
//version = VERSION_NAME
86

7+
buildscript {
8+
repositories {
9+
jcenter()
10+
maven { url 'https://jitpack.io' }
11+
}
12+
dependencies {
13+
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
14+
}
15+
}
16+
17+
apply plugin: 'com.github.dcendents.android-maven'
18+
919
android {
1020
compileSdkVersion 25
1121
buildToolsVersion "25.0.2"
@@ -19,12 +29,10 @@ android {
1929
versionName "1.0"
2030

2131
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
22-
2332
}
2433

2534
buildTypes {
2635
release {
27-
testCoverageEnabled true
2836
minifyEnabled false
2937
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3038
}
@@ -54,5 +62,5 @@ dependencies {
5462
testCompile "org.robolectric:robolectric:3.3.2"
5563
}
5664

65+
apply from: file('gradle/buildAndDeploy.gradle')
5766
apply from: file('gradle/jacoco.gradle')
58-
apply from: file('gradle/buildAndDeploy.gradle')

0 commit comments

Comments
 (0)