21 lines
568 B
Groovy
21 lines
568 B
Groovy
|
plugins {
|
||
|
id("com.android.library")
|
||
|
}
|
||
|
apply from: "../../common.gradle"
|
||
|
apply from: "../../playFlavor.gradle"
|
||
|
|
||
|
android {
|
||
|
namespace "de.danoeh.antennapod.ui.transcript"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':model')
|
||
|
implementation project(':net:common')
|
||
|
implementation project(':parser:media')
|
||
|
implementation project(':parser:transcript')
|
||
|
|
||
|
implementation "commons-io:commons-io:$commonsioVersion"
|
||
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
||
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
||
|
}
|