2022-11-06 14:32:47 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
|
|
|
|
android {
|
2023-10-17 14:52:21 -04:00
|
|
|
namespace "de.danoeh.antennapod.storage.preferences"
|
|
|
|
|
2023-04-01 17:16:53 -04: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"
|
|
|
|
}
|