File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply 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+
919android {
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' )
5766apply from : file(' gradle/jacoco.gradle' )
58- apply from : file(' gradle/buildAndDeploy.gradle' )
You can’t perform that action at this time.
0 commit comments