mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-27 17:23:54 +01:00
28 lines
943 B
Groovy
28 lines
943 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.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')
|
|
|
|
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"
|
|
}
|