diff options
Diffstat (limited to 'storage/importexport/build.gradle')
-rw-r--r-- | storage/importexport/build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/storage/importexport/build.gradle b/storage/importexport/build.gradle index ddbbd1951..ae1faa284 100644 --- a/storage/importexport/build.gradle +++ b/storage/importexport/build.gradle @@ -8,14 +8,20 @@ android { } dependencies { + implementation project(':event') implementation project(':storage:database') implementation project(':storage:preferences') implementation project(':ui:i18n') + implementation project(':ui:notifications') implementation project(':model') 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 'androidx.documentfile:documentfile:1.0.1' + implementation "org.greenrobot:eventbus:$eventbusVersion" } |