AntennaPod/ui/widget/build.gradle
ByteHamster 0cbd97b5cb
Move theme to :ui:common module (#6997)
This enables creating Activities outside the app and core modules
2024-03-17 18:43:55 +01:00

20 lines
402 B
Groovy

plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
android {
namespace "de.danoeh.antennapod.ui.widget"
defaultConfig {
vectorDrawables.useSupportLibrary false
vectorDrawables.generatedDensities = ["xhdpi"]
}
}
dependencies {
implementation project(":ui:common")
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
}