summaryrefslogtreecommitdiff
path: root/net/download/service-interface/build.gradle
blob: a6ecd8c58da92803c527acc110683ae34797e002 (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
plugins {
    id("com.android.library")
    id("java-test-fixtures")
}
apply from: "../../../common.gradle"
apply from: "../../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.net.download.serviceinterface"

    lint {
        disable 'ParcelClassLoader'
    }
}

dependencies {
    implementation project(':model')
    implementation project(':net:common')
    implementation project(':storage:preferences')

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "org.apache.commons:commons-lang3:$commonslangVersion"
    implementation "commons-io:commons-io:$commonsioVersion"

    testImplementation "junit:junit:$junitVersion"
    testImplementation "org.robolectric:robolectric:$robolectricVersion"
}