summaryrefslogtreecommitdiff
path: root/storage/preferences/build.gradle
blob: 0c852bf7a9192944412432326870475b8cce1b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
}