summaryrefslogtreecommitdiff
path: root/storage/database/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'storage/database/build.gradle')
-rw-r--r--storage/database/build.gradle11
1 files changed, 11 insertions, 0 deletions
diff --git a/storage/database/build.gradle b/storage/database/build.gradle
index 0f3aed252..63f9eeaec 100644
--- a/storage/database/build.gradle
+++ b/storage/database/build.gradle
@@ -2,6 +2,7 @@ plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
+apply from: "../../playFlavor.gradle"
android {
namespace "de.danoeh.antennapod.storage.database"
@@ -12,11 +13,21 @@ android {
}
dependencies {
+ implementation project(':event')
implementation project(':model')
+ implementation project(':net:download:service-interface')
+ implementation project(':net:sync:model')
+ implementation project(':net:sync:service-interface')
+ 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 "commons-io:commons-io:$commonsioVersion"
+ implementation "org.greenrobot:eventbus:$eventbusVersion"
+ implementation "com.google.guava:guava:31.0.1-android"
testImplementation "junit:junit:$junitVersion"
}