We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ac752 commit da69a11Copy full SHA for da69a11
app/build.gradle
@@ -1,5 +1,5 @@
1
apply plugin: 'com.android.application'
2
-
+apply plugin: 'jacoco-android'
3
apply plugin: 'kotlin-android'
4
5
android {
@@ -74,4 +74,7 @@ dependencies {
74
exclude group: 'com.android.support', module: 'design'
75
exclude group: 'com.android.support', module: 'recyclerview-v7'
76
}
77
+ // Mockito for writing unit test mock objects
78
+ testCompile "org.mockito:mockito-core:2.7.22"
79
+ androidTestCompile 'org.mockito:mockito-android:2.7.22'
80
0 commit comments