diff options
author | Allan Wang <me@allanwang.ca> | 2019-06-08 01:09:42 -0400 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-06-08 01:09:42 -0400 |
commit | c340f824a8a287cf5e5000a91b668be2e7fe3e0f (patch) | |
tree | c8ad475da88e1191f34f18b645d1ea4f29088ff4 /sample | |
parent | 065f2db88e4b87b53b3216a5313d5e1e22fa2867 (diff) | |
download | kau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.tar.gz kau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.tar.bz2 kau-c340f824a8a287cf5e5000a91b668be2e7fe3e0f.zip |
Add many more dependency declarations in plugin
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 } |