summaryrefslogtreecommitdiff
path: root/ui/preferences/build.gradle
blob: b91158fb961de351335520007d68d07e86362752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
    id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.ui.preferences"
}

dependencies {
    implementation project(":core")
    implementation project(":event")
    implementation project(":model")
    implementation project(":net:common")
    implementation project(":net:sync:model")
    implementation project(":net:sync:gpoddernet")
    implementation project(":storage:preferences")
    implementation project(":storage:importexport")
    implementation project(":ui:common")
    implementation project(":ui:glide")
    implementation project(":ui:i18n")

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.appcompat:appcompat:$appcompatVersion"
    implementation "com.google.android.material:material:$googleMaterialVersion"
    implementation "androidx.preference:preference:$preferenceVersion"
    implementation "androidx.work:work-runtime:$workManagerVersion"

    implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
    implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
    implementation "com.github.bumptech.glide:glide:$glideVersion"
    implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
    implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
    implementation "org.greenrobot:eventbus:$eventbusVersion"
    implementation 'com.github.ByteHamster:SearchPreference:v2.5.0'
}

tasks.register('copyLicense', Copy) {
    from "../../LICENSE"
    into "src/main/assets/"
    rename { String fileName ->
        fileName + ".txt"
    }
}

preBuild.dependsOn copyLicense