summaryrefslogtreecommitdiff
path: root/net/sync/service/build.gradle
blob: 7fa19d320f88a057dc4b3ece88fffe27b7658037 (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
plugins {
    id("com.android.library")
}
apply from: "../../../common.gradle"
apply from: "../../../playFlavor.gradle"

android {
    namespace "de.danoeh.antennapod.net.sync.service"
}

dependencies {
    implementation project(':event')
    implementation project(':model')
    implementation project(':net:common')
    implementation project(':net:sync:gpoddernet')
    implementation project(':net:sync:model')
    implementation project(':net:sync:service-interface')
    implementation project(':storage:database')
    implementation project(':storage:preferences')
    implementation project(':ui:notifications')
    implementation project(':ui:i18n')
    implementation project(':net:download:service-interface')

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
    implementation "androidx.core:core:$coreVersion"
    implementation "androidx.work:work-runtime:$workManagerVersion"

    implementation "org.greenrobot:eventbus:$eventbusVersion"
    implementation "org.apache.commons:commons-lang3:$commonslangVersion"
    implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
    implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
    implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
    implementation "com.google.guava:guava:31.0.1-android"

    testImplementation "junit:junit:$junitVersion"
}