mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-13 17:37:39 +01:00
23 lines
603 B
Groovy
23 lines
603 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.storage.database"
|
|
|
|
lint {
|
|
disable "StaticFieldLeak", "StringFormatCount", "StringFormatMatches", "StringFormatInvalid", "PluralsCandidate", "StringFormatTrivial"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.core:core:$coreVersion"
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
}
|