mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2026-03-24 08:25:38 +00:00
### Description Load media icon using Glide, respecting caches and supporting local embedded covers. ### Checklist - [x] I have read the contribution guidelines: https://github.com/AntennaPod/AntennaPod/blob/develop/CONTRIBUTING.md#submit-a-pull-request - [x] I have performed a self-review of my code, going through my changes line by line and carefully considering why this line change is necessary - [x] I have run the automated code checks using `./gradlew checkstyle spotbugsPlayDebug spotbugsDebug :app:lintPlayDebug` - [x] My code follows the style guidelines of the AntennaPod project: https://antennapod.org/contribute/develop/app/code-style - [x] I have mentioned the corresponding issue and the relevant keyword (e.g., "Closes: #xy") in the description (see https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) - [x] If it is a core feature, I have added automated tests --------- Co-authored-by: ByteHamster <5811634+ByteHamster@users.noreply.github.com>
21 lines
565 B
Groovy
21 lines
565 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.playback.base"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
implementation project(':system')
|
|
|
|
implementation "androidx.media3:media3-exoplayer:$media3Version"
|
|
implementation "androidx.media3:media3-session:$media3Version"
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|