summaryrefslogtreecommitdiff
path: root/storage/importexport/build.gradle
blob: 8f3599dc0c1b9b9a15158bd09fe740ad63a3a71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.storage.importexport"
}

dependencies {
    implementation project(':event')
    implementation project(':storage:database')
    implementation project(':storage:preferences')
    implementation project(':ui:i18n')
    implementation project(':ui:notifications')
    implementation project(':model')
    implementation project(':net:download:service-interface')

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.core:core:$coreVersion"
    implementation 'androidx.documentfile:documentfile:1.0.1'
    implementation "androidx.work:work-runtime:$workManagerVersion"

    implementation "commons-io:commons-io:$commonsioVersion"
    implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
    implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
    implementation "org.greenrobot:eventbus:$eventbusVersion"
    implementation "com.google.guava:guava:31.0.1-android"
}