2024-03-29 19:27:53 +01:00
|
|
|
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(':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')
|
2024-04-05 19:20:27 +02:00
|
|
|
implementation project(':ui:chapters')
|
2024-05-18 18:54:14 +02:00
|
|
|
implementation project(':ui:transcript')
|
2024-03-29 19:27:53 +01:00
|
|
|
|
|
|
|
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"
|
2024-04-04 22:26:53 +02:00
|
|
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
|
|
|
testImplementation "androidx.preference:preference:$preferenceVersion"
|
2024-03-29 19:27:53 +01:00
|
|
|
}
|