AntennaPod/storage/preferences/build.gradle

19 lines
408 B
Groovy

plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
android {
lint {
disable "StaticFieldLeak"
}
}
dependencies {
implementation project(':model')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.fragment:fragment:$fragmentVersion"
implementation "androidx.preference:preference:$preferenceVersion"
}