summaryrefslogtreecommitdiff
path: root/storage/database/build.gradle
blob: a78afbf7913f7b0949e66a6a629a77200b0b50bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.storage.database"

    lint {
        disable "StaticFieldLeak", "StringFormatCount", "StringFormatMatches", "StringFormatInvalid", "PluralsCandidate", "StringFormatTrivial"
    }
}

dependencies {
    implementation project(':event')
    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')

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.core:core:$coreVersion"
    implementation 'androidx.documentfile:documentfile:1.0.1'

    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"

    testImplementation "junit:junit:$junitVersion"
    testImplementation "androidx.test:core:$testCoreVersion"
    testImplementation "org.robolectric:robolectric:$robolectricVersion"
}