Podcini-podcast/ui/glide/build.gradle

26 lines
822 B
Groovy
Raw Normal View History

2024-02-05 21:50:43 +01:00
plugins {
id("com.android.library")
2024-02-14 07:09:48 +01:00
id 'org.jetbrains.kotlin.android'
2024-02-05 21:50:43 +01:00
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
android {
2024-02-14 09:07:17 +01:00
namespace "ac.mdiq.podvinci.ui.glide"
2024-02-05 21:50:43 +01:00
}
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"
2024-02-14 07:09:48 +01:00
implementation "androidx.core:core-ktx:$coreVersion"
2024-02-05 21:50:43 +01:00
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
implementation "commons-io:commons-io:$commonsioVersion"
}