24 lines
642 B
Groovy
24 lines
642 B
Groovy
|
plugins {
|
||
|
id("com.android.library")
|
||
|
}
|
||
|
apply from: "../../common.gradle"
|
||
|
|
||
|
android {
|
||
|
namespace "de.danoeh.antennapod.parser.transcript"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':model')
|
||
|
|
||
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
||
|
|
||
|
implementation "androidx.core:core:$coreVersion"
|
||
|
|
||
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
||
|
implementation "commons-io:commons-io:$commonsioVersion"
|
||
|
implementation "org.jsoup:jsoup:$jsoupVersion"
|
||
|
|
||
|
testImplementation "junit:junit:$junitVersion"
|
||
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
||
|
}
|