AntennaPod/storage/preferences/build.gradle

21 lines
466 B
Groovy
Raw Normal View History

2022-11-06 14:32:47 +01:00
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
android {
2023-10-17 20:52:21 +02:00
namespace "de.danoeh.antennapod.storage.preferences"
2023-04-01 23:16:53 +02:00
lint {
2022-11-06 14:32:47 +01:00
disable "StaticFieldLeak"
}
}
dependencies {
implementation project(':model')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.fragment:fragment:$fragmentVersion"
implementation "androidx.preference:preference:$preferenceVersion"
}