From c23420a83a8d712ea3d075a03426ddba2297794c Mon Sep 17 00:00:00 2001 From: Yahor Berdnikau Date: Tue, 26 Jun 2018 22:15:45 +0200 Subject: [PATCH] Fix lint error by excluding support library from picasso dependency. Signed-off-by: Yahor Berdnikau --- subsonic-api-image-loader/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/subsonic-api-image-loader/build.gradle b/subsonic-api-image-loader/build.gradle index cd7ead54..7f7d3a71 100644 --- a/subsonic-api-image-loader/build.gradle +++ b/subsonic-api-image-loader/build.gradle @@ -25,7 +25,9 @@ dependencies { api project(':domain') api project(':subsonic-api') api other.kotlinStdlib - api other.picasso + api(other.picasso) { + exclude group: "com.android.support" + } testImplementation testing.junit testImplementation testing.kotlinJunit