diff options
Diffstat (limited to 'sample')
-rw-r--r-- | sample/build.gradle | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 11be396..aa4bd14 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -127,15 +127,15 @@ dependencies { implementation project(':searchview') implementation project(':mediapicker') - implementation "com.afollestad.material-dialogs:input:${kau.Versions.materialDialog}" + implementation kau.Dependencies.materialDialog("input") testImplementation kau.Dependencies.kotlinTest testImplementation kau.Dependencies.junit androidTestImplementation kau.Dependencies.kotlinTest androidTestImplementation kau.Dependencies.espresso - androidTestImplementation "androidx.test.espresso:espresso-intents:${kau.Versions.espresso}" - androidTestImplementation "androidx.test.espresso:espresso-contrib:${kau.Versions.espresso}" + androidTestImplementation kau.Dependencies.espresso("intents") + androidTestImplementation kau.Dependencies.espresso("contrib") androidTestImplementation kau.Dependencies.testRules androidTestImplementation kau.Dependencies.testRunner } |