17 lines
420 B
Groovy
17 lines
420 B
Groovy
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"
|
|
}
|