summaryrefslogtreecommitdiff
path: root/storage/importexport/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'storage/importexport/build.gradle')
-rw-r--r--storage/importexport/build.gradle21
1 files changed, 21 insertions, 0 deletions
diff --git a/storage/importexport/build.gradle b/storage/importexport/build.gradle
new file mode 100644
index 000000000..ddbbd1951
--- /dev/null
+++ b/storage/importexport/build.gradle
@@ -0,0 +1,21 @@
+plugins {
+ id("com.android.library")
+}
+apply from: "../../common.gradle"
+
+android {
+ namespace "de.danoeh.antennapod.storage.importexport"
+}
+
+dependencies {
+ implementation project(':storage:database')
+ implementation project(':storage:preferences')
+ implementation project(':ui:i18n')
+ implementation project(':model')
+
+ annotationProcessor "androidx.annotation:annotation:$annotationVersion"
+ implementation "commons-io:commons-io:$commonsioVersion"
+ implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
+ implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
+ implementation 'androidx.documentfile:documentfile:1.0.1'
+}