AntennaPod/ui/glide/build.gradle

24 lines
731 B
Groovy
Raw Normal View History

2022-11-01 13:07:18 +01:00
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
2023-10-17 20:52:21 +02:00
android {
namespace "de.danoeh.antennapod.ui.glide"
}
2022-11-01 13:07:18 +01:00
dependencies {
implementation project(":model")
implementation project(":core")
2022-11-06 14:32:47 +01:00
implementation project(':storage:preferences')
2022-11-01 13:07:18 +01:00
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"
}