AntennaPod/storage/database/build.gradle

38 lines
1.4 KiB
Groovy
Raw Normal View History

2022-02-27 12:12:24 +01:00
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
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 {
disable "StaticFieldLeak", "StringFormatCount", "StringFormatMatches", "StringFormatInvalid", "PluralsCandidate", "StringFormatTrivial"
2022-02-27 12:12:24 +01:00
}
}
dependencies {
implementation project(':event')
2022-02-27 12:12:24 +01:00
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')
2022-02-27 12:12:24 +01:00
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.core:core:$coreVersion"
implementation 'androidx.documentfile:documentfile:1.0.1'
2022-02-27 12:12:24 +01:00
implementation "commons-io:commons-io:$commonsioVersion"
implementation "org.greenrobot:eventbus:$eventbusVersion"
implementation "com.google.guava:guava:31.0.1-android"
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
2024-04-05 19:20:27 +02:00
testImplementation project(':parser:feed')
testImplementation "junit:junit:$junitVersion"
testImplementation "androidx.test:core:$testCoreVersion"
testImplementation "org.robolectric:robolectric:$robolectricVersion"
2022-02-27 12:12:24 +01:00
}