blob: 93da356f7be4f0b1fa63447e1bb8fcbbed6c2160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
plugins {
id("com.android.library")
}
apply from: "../common.gradle"
android {
namespace "de.danoeh.antennapod.model"
}
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.media:media:$mediaVersion"
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
}
|