AntennaPod/model/build.gradle

20 lines
408 B
Groovy
Raw Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
apply from: "../common.gradle"
2021-04-22 23:17:11 +02:00
2023-10-17 20:52:21 +02:00
android {
namespace "de.danoeh.antennapod.model"
lint {
disable 'ParcelClassLoader'
}
2023-10-17 20:52:21 +02:00
}
2021-04-22 23:17:11 +02:00
dependencies {
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.media:media:$mediaVersion"
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
}