2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-05-11 22:14:56 +02:00
|
|
|
apply from: "../../../common.gradle"
|
2021-04-24 16:18:02 +02:00
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.net.sync.gpoddernet"
|
|
|
|
}
|
|
|
|
|
2021-04-24 16:18:02 +02:00
|
|
|
dependencies {
|
2024-04-05 20:08:25 +02:00
|
|
|
implementation project(':net:sync:service-interface')
|
2021-04-24 16:18:02 +02:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
|
|
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
2021-12-04 19:01:22 +01:00
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
2021-10-06 22:12:47 +02:00
|
|
|
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
|
|
|
|
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
|
2022-02-24 21:20:40 +01:00
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
2021-04-24 16:18:02 +02:00
|
|
|
}
|