2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-11-28 22:19:14 +01:00
|
|
|
apply from: "../../common.gradle"
|
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.playback.base"
|
|
|
|
}
|
|
|
|
|
2021-11-28 22:19:14 +01:00
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
|
2021-12-04 19:01:22 +01:00
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2021-11-28 22:19:14 +01:00
|
|
|
}
|