Files
AntennaPod/net/download/service/build.gradle
Hans-Peter Lehmann c19b3d7223 Upgrade to gradle plugin 9.0 (#8302)
### Description

Upgrade to gradle plugin 9.0. This adds support for Java 25

### Checklist
<!-- 
To help us keep the issue tracker clean and work as efficient as
possible,
  please make sure that you have done all of the following.
You can tick the boxes below by placing an x inside the brackets like
this: [x]
-->
- [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
2026-08-01 10:02:41 +02:00

48 lines
1.5 KiB
Groovy

plugins {
alias(libs.plugins.android.library)
}
apply from: "../../../common.gradle"
apply from: "../../../playFlavor.gradle"
android {
namespace "de.danoeh.antennapod.net.download.service"
}
dependencies {
implementation project(':event')
implementation project(':model')
implementation project(':net:common')
implementation project(':net:download:service-interface')
implementation project(':net:sync:service-interface')
implementation project(':parser:media')
implementation project(':parser:feed')
implementation project(':storage:database')
implementation project(':ui:notifications')
implementation project(':storage:preferences')
implementation project(':ui:app-start-intent')
implementation project(':ui:chapters')
implementation project(':ui:transcript')
annotationProcessor libs.androidx.annotation
implementation libs.androidx.core
implementation libs.androidx.documentfile
implementation libs.androidx.work.runtime
implementation libs.google.material
implementation libs.okhttp
implementation libs.okhttp.urlconnection
implementation libs.commons.io
implementation libs.commons.lang3
implementation libs.eventbus
implementation libs.glide
implementation libs.rxandroid
implementation libs.rxjava
implementation libs.guava
testImplementation libs.junit
testImplementation libs.robolectric
testImplementation libs.awaitility
testImplementation libs.mockito.core
testImplementation libs.androidx.preference
}