summaryrefslogtreecommitdiff
path: root/ui/glide/build.gradle
blob: d518e1d69bdbf142c942fc4ba5fc5a064a9e1195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.ui.glide"
}

dependencies {
    implementation project(":model")
    implementation project(":core")
    implementation project(':storage:preferences')

    implementation "androidx.palette:palette:$paletteVersion"

    implementation "com.github.bumptech.glide:glide:$glideVersion"
    implementation "com.github.bumptech.glide:okhttp3-integration:$glideVersion@aar"
    annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
    implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
    implementation "commons-io:commons-io:$commonsioVersion"
}