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")
|
2024-03-17 20:25:44 +01:00
|
|
|
implementation project(':net:common')
|
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"
|
|
|
|
}
|