aboutsummaryrefslogtreecommitdiff
path: root/android-lib.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-08-30 12:13:38 -0400
committerAllan Wang <me@allanwang.ca>2017-08-30 12:24:19 -0400
commit86ddfb02cb989ab5b6990e518640ab82c107bc37 (patch)
treef8312e285a9ed2e18bea4c72784a136254aa26f7 /android-lib.gradle
parent3adba8531753b0750303847948826819e7f09256 (diff)
downloadkau-86ddfb02cb989ab5b6990e518640ab82c107bc37.tar.gz
kau-86ddfb02cb989ab5b6990e518640ab82c107bc37.tar.bz2
kau-86ddfb02cb989ab5b6990e518640ab82c107bc37.zip
fix/mediapicker (#50)
* Bring all glide request managers to one instance * Switch to test implementation * Check if parent is null for searchview * Ensure open close runs on ui thread * Make glide contract internal * Update changelog * Update version
Diffstat (limited to 'android-lib.gradle')
-rw-r--r--android-lib.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/android-lib.gradle b/android-lib.gradle
index a8417c0..d968dd4 100644
--- a/android-lib.gradle
+++ b/android-lib.gradle
@@ -70,10 +70,10 @@ android {
}
dependencies {
- androidTestCompile("com.android.support.test:runner:${TEST_RUNNER}") {
+ androidTestImplementation("com.android.support.test:runner:${TEST_RUNNER}") {
exclude group: 'com.android.support', module: 'support-annotations'
}
- androidTestCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
- testCompile "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
- testCompile "junit:junit:${JUNIT}"
+ androidTestImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
+ testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${KOTLIN}"
+ testImplementation "junit:junit:${JUNIT}"
} \ No newline at end of file