mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2024-12-11 08:28:52 +01:00
20 lines
458 B
Groovy
20 lines
458 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.parser.media"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
|
}
|