mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-08 23:12:36 +01:00
19 lines
415 B
Groovy
19 lines
415 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
|
|
android {
|
|
lintOptions {
|
|
disable "StaticFieldLeak"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.fragment:fragment:$fragmentVersion"
|
|
implementation "androidx.preference:preference:$preferenceVersion"
|
|
}
|