summaryrefslogtreecommitdiff
path: root/model/build.gradle
blob: 14b79c6ae550434db646b7eaca73e1f846132fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
    id("com.android.library")
}
apply from: "../common.gradle"

android {
    namespace "de.danoeh.antennapod.model"

    lint {
        disable 'ParcelClassLoader'
    }
}

dependencies {
    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.media:media:$mediaVersion"
    implementation "org.apache.commons:commons-lang3:$commonslangVersion"

    testImplementation "junit:junit:$junitVersion"
    testImplementation "androidx.test:core:$testCoreVersion"
    testImplementation "org.mockito:mockito-core:$mockitoVersion"
}