mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-08 07:02:42 +01:00
0cbd97b5cb
This enables creating Activities outside the app and core modules
20 lines
402 B
Groovy
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"
|
|
}
|