blob: 8471644486c58a4e8b28d37545f244e8b4612ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
android {
namespace "de.danoeh.antennapod.ui.echo"
lint {
disable "AppBundleLocaleChanges", "MissingQuantity"
}
}
dependencies {
implementation project(":model")
implementation project(':storage:database')
implementation project(":storage:preferences")
implementation project(':ui:common')
implementation project(':ui:episodes')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "com.google.android.material:material:$googleMaterialVersion"
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
}
|