2022-02-27 12:12:24 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
2024-03-29 17:45:14 +01:00
|
|
|
apply from: "../../playFlavor.gradle"
|
2022-02-27 12:12:24 +01:00
|
|
|
|
|
|
|
android {
|
2023-10-17 20:52:21 +02:00
|
|
|
namespace "de.danoeh.antennapod.storage.database"
|
|
|
|
|
2023-04-01 23:16:53 +02:00
|
|
|
lint {
|
2024-04-07 23:28:14 +02:00
|
|
|
disable "StaticFieldLeak"
|
2022-02-27 12:12:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation project(':event')
|
2022-02-27 12:12:24 +01:00
|
|
|
implementation project(':model')
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation project(':net:download:service-interface')
|
|
|
|
implementation project(':net:sync:service-interface')
|
|
|
|
implementation project(':storage:preferences')
|
|
|
|
implementation project(':ui:app-start-intent')
|
2022-02-27 12:12:24 +01:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
2024-03-25 21:45:43 +01:00
|
|
|
implementation "androidx.core:core:$coreVersion"
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
|
|
|
|
2022-02-27 12:12:24 +01:00
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation "org.greenrobot:eventbus:$eventbusVersion"
|
|
|
|
implementation "com.google.guava:guava:31.0.1-android"
|
2024-03-31 18:40:15 +02:00
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
2024-03-25 21:45:43 +01:00
|
|
|
|
2024-04-05 19:20:27 +02:00
|
|
|
testImplementation project(':parser:feed')
|
2024-03-25 21:45:43 +01:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2024-03-31 18:40:15 +02:00
|
|
|
testImplementation "androidx.test:core:$testCoreVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
2022-02-27 12:12:24 +01:00
|
|
|
}
|