Fix lint error by excluding support library from picasso dependency.

Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
This commit is contained in:
Yahor Berdnikau 2018-06-26 22:15:45 +02:00
parent 6f6e2470d8
commit c23420a83a
1 changed files with 3 additions and 1 deletions

View File

@ -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