AntennaPod/ui/echo/build.gradle

29 lines
915 B
Groovy
Raw Normal View History

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 {
2024-04-09 22:33:52 +02:00
disable "AppBundleLocaleChanges", "MissingQuantity"
2023-11-28 20:26:29 +01:00
}
}
dependencies {
implementation project(":model")
implementation project(':storage:database')
2023-11-28 20:26:29 +01:00
implementation project(":storage:preferences")
implementation project(':ui:common')
implementation project(':ui:episodes')
2023-11-28 20:26:29 +01:00
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"
}