2023-11-28 20:26:29 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
apply from: "../../playFlavor.gradle"
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.ui.echo"
|
|
|
|
|
|
|
|
lint {
|
|
|
|
disable "AppBundleLocaleChanges"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":core")
|
|
|
|
implementation project(":model")
|
2024-03-25 21:45:43 +01:00
|
|
|
implementation project(':storage:database')
|
2023-11-28 20:26:29 +01:00
|
|
|
implementation project(":storage:preferences")
|
2024-03-17 18:43:55 +01:00
|
|
|
implementation project(':ui:common')
|
2023-11-28 20:26:29 +01:00
|
|
|
implementation project(':ui:glide')
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|