aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'sample/build.gradle')
-rw-r--r--sample/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index 0ed7818..77165e8 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -26,7 +26,7 @@ android {
versionName androidGitVersion.name()
versionCode androidGitVersion.code()
multiDexEnabled true
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ testInstrumentationRunner "ca.allanwang.kau.sample.SampleTestRunner"
}
viewBinding {
enabled = true
@@ -137,9 +137,11 @@ dependencies {
implementation project(':mediapicker')
implementation Dependencies.materialDialog("input")
+ implementation Dependencies.koin
testImplementation Dependencies.kotlinTest
testImplementation Dependencies.junit
+ testImplementation Dependencies.koinTest
androidTestImplementation Dependencies.kotlinTest
androidTestImplementation Dependencies.espresso
@@ -147,4 +149,5 @@ dependencies {
androidTestImplementation Dependencies.espresso("contrib")
androidTestImplementation Dependencies.testRules
androidTestImplementation Dependencies.testRunner
+ androidTestImplementation Dependencies.koinTest
}