2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-08-28 09:52:45 +02:00
|
|
|
apply from: "../../common.gradle"
|
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.parser.media"
|
|
|
|
}
|
|
|
|
|
2021-08-28 09:52:45 +02:00
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
|
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
|
|
|
|
2021-12-04 19:01:22 +01:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2022-01-22 16:55:20 +01:00
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
2021-08-28 09:52:45 +02:00
|
|
|
}
|