20 lines
408 B
Groovy
20 lines
408 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.model"
|
|
|
|
lint {
|
|
disable 'ParcelClassLoader'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.media:media:$mediaVersion"
|
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
}
|