diff options
Diffstat (limited to 'sample/build.gradle')
-rw-r--r-- | sample/build.gradle | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 5bbdbb0..fb55b94 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -95,13 +95,17 @@ dependencies { implementation project(':searchview') implementation project(':mediapicker') - androidTestImplementation("com.android.support.test.espresso:espresso-core:${kau.espresso}") { - exclude group: 'com.android.support', module: 'support-annotations' - } - androidTestImplementation("com.android.support.test:runner:${kau.testRunner}") { - exclude group: 'com.android.support', module: 'support-annotations' - } - androidTestImplementation kauDependency.kotlinTest +// androidTestImplementation("com.android.support.test.espresso:espresso-core:${kau.espresso}") { +// exclude group: 'com.android.support', module: 'support-annotations' +// } +// androidTestImplementation("com.android.support.test:runner:${kau.testRunner}") { +// exclude group: 'com.android.support', module: 'support-annotations' +// } +// androidTestImplementation kauDependency.kotlinTest testImplementation kauDependency.kotlinTest testImplementation kauDependency.junit + + androidTestImplementation kauDependency.kotlinTest + androidTestImplementation kauDependency.espresso + androidTestImplementation kauDependency.testRunner } |