2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-05-11 22:14:56 +02:00
|
|
|
apply from: "../../common.gradle"
|
2024-03-25 23:45:09 +01:00
|
|
|
apply from: "../../playFlavor.gradle"
|
2021-04-17 11:57:27 +02:00
|
|
|
|
|
|
|
android {
|
2024-03-17 12:06:41 +01:00
|
|
|
namespace "de.danoeh.antennapod.ui.widget"
|
2023-10-17 20:52:21 +02:00
|
|
|
|
2021-04-17 11:57:27 +02:00
|
|
|
defaultConfig {
|
|
|
|
vectorDrawables.useSupportLibrary false
|
2021-07-24 09:31:49 +02:00
|
|
|
vectorDrawables.generatedDensities = ["xhdpi"]
|
2021-04-17 11:57:27 +02:00
|
|
|
}
|
2024-03-25 23:45:09 +01:00
|
|
|
|
|
|
|
lint {
|
|
|
|
disable "IconMissingDensityFolder"
|
|
|
|
}
|
2021-04-17 11:57:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-25 23:45:09 +01:00
|
|
|
implementation project(":model")
|
|
|
|
implementation project(":playback:base")
|
|
|
|
implementation project(':storage:preferences')
|
|
|
|
implementation project(':storage:database')
|
|
|
|
implementation project(":ui:app-start-intent")
|
2024-03-17 18:43:55 +01:00
|
|
|
implementation project(":ui:common")
|
2024-03-25 23:45:09 +01:00
|
|
|
implementation project(":ui:episodes")
|
|
|
|
implementation project(':ui:i18n')
|
2024-03-17 18:43:55 +01:00
|
|
|
|
2021-04-17 11:57:27 +02:00
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
2024-03-25 23:45:09 +01:00
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
|
|
implementation "androidx.work:work-runtime:$workManagerVersion"
|
|
|
|
implementation "com.github.bumptech.glide:glide:$glideVersion"
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation "com.google.guava:guava:31.0.1-android"
|
2021-04-17 11:57:27 +02:00
|
|
|
}
|