diff options
author | Allan Wang <me@allanwang.ca> | 2018-02-23 20:52:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-23 20:52:21 -0500 |
commit | 3d7c85bd97261116a090a7202b0e0ed2625b5d73 (patch) | |
tree | f8d6409ef847a1ca0c0ba3640a27984703de470e /sample/build.gradle | |
parent | 20f0d085d6940be30b076a8cff3de25fe4a6e21a (diff) | |
download | kau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.tar.gz kau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.tar.bz2 kau-3d7c85bd97261116a090a7202b0e0ed2625b5d73.zip |
Misc (#140)
* Nullify task
* Rewrite circle view
* Add better encapsulation
* Update annotations
* Update kpref annotations
* Begin writing tests for color picker
* Add color selection tests
* Update changelog
* Cleanup
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 } |