summaryrefslogtreecommitdiff
path: root/net/download/service-interface/build.gradle
blob: 5779ab51d4e3932ae4c9a9e25deb53e569177376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
    id("com.android.library")
    id("java-test-fixtures")
}
apply from: "../../../common.gradle"

android {
    lint {
        disable 'ParcelClassLoader'
    }
}

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

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"

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