summaryrefslogtreecommitdiff
path: root/net/download/service/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'net/download/service/build.gradle')
-rw-r--r--net/download/service/build.gradle47
1 files changed, 47 insertions, 0 deletions
diff --git a/net/download/service/build.gradle b/net/download/service/build.gradle
new file mode 100644
index 000000000..75d6b26de
--- /dev/null
+++ b/net/download/service/build.gradle
@@ -0,0 +1,47 @@
+plugins {
+ id("com.android.library")
+ id("java-test-fixtures")
+}
+apply from: "../../../common.gradle"
+apply from: "../../../playFlavor.gradle"
+
+android {
+ namespace "de.danoeh.antennapod.net.download.service"
+}
+
+dependencies {
+ implementation project(":core")
+ implementation project(':event')
+ implementation project(':model')
+ implementation project(':net:common')
+ implementation project(':net:download:service-interface')
+ implementation project(':net:sync:model')
+ 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')
+
+ annotationProcessor "androidx.annotation:annotation:$annotationVersion"
+ implementation "androidx.core:core:$coreVersion"
+ implementation 'androidx.documentfile:documentfile:1.0.1'
+ implementation "androidx.work:work-runtime:$workManagerVersion"
+ implementation "com.google.android.material:material:$googleMaterialVersion"
+
+ implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
+ implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
+ implementation "commons-io:commons-io:$commonsioVersion"
+ implementation "org.apache.commons:commons-lang3:$commonslangVersion"
+ implementation "org.greenrobot:eventbus:$eventbusVersion"
+ implementation "com.github.bumptech.glide:glide:$glideVersion"
+ implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
+ implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
+ implementation "com.google.guava:guava:31.0.1-android"
+
+ testImplementation "junit:junit:$junitVersion"
+ testImplementation "org.robolectric:robolectric:$robolectricVersion"
+ testImplementation "org.awaitility:awaitility:$awaitilityVersion"
+ testImplementation 'org.mockito:mockito-core:5.11.0'
+}