summaryrefslogtreecommitdiff
path: root/net/common/build.gradle
blob: 67efdf43f2b0f5159973b6838c2d9e3bc866a421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"

android {
    namespace "de.danoeh.antennapod.net.common"
}

dependencies {
    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"

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