mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-10-29 11:49:33 +00:00
18 lines
472 B
Groovy
18 lines
472 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../../common.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.net.sync.serviceinterface"
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':model')
|
|
implementation project(':storage:preferences')
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "io.reactivex.rxjava3:rxandroid:$rxAndroidVersion"
|
|
implementation "io.reactivex.rxjava3:rxjava:$rxJavaVersion"
|
|
}
|