2022-04-25 23:10:18 +02:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
|
|
|
apply from: "../../playFlavor.gradle"
|
|
|
|
|
|
|
|
android {
|
2023-10-17 20:52:21 +02:00
|
|
|
namespace "de.danoeh.antennapod.net.discovery"
|
|
|
|
|
2022-04-25 23:10:18 +02:00
|
|
|
defaultConfig {
|
|
|
|
if (project.hasProperty("podcastindexApiKey")) {
|
|
|
|
buildConfigField "String", "PODCASTINDEX_API_KEY", '"' + podcastindexApiKey + '"'
|
|
|
|
buildConfigField "String", "PODCASTINDEX_API_SECRET", '"' + podcastindexApiSecret + '"'
|
|
|
|
} else {
|
|
|
|
buildConfigField "String", "PODCASTINDEX_API_KEY", '"XTMMQGA2YZ4WJUBYY4HK"'
|
|
|
|
buildConfigField "String", "PODCASTINDEX_API_SECRET", '"XAaAhk4^2YBsTE33vdbwbZNj82ZRLABDDqFdKe7x"'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
2024-03-17 20:25:44 +01:00
|
|
|
implementation project(':net:common')
|
2024-03-29 11:23:33 +01:00
|
|
|
implementation project(':storage:preferences')
|
|
|
|
implementation project(':ui:i18n')
|
2022-04-25 23:10:18 +02:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
|
|
|
|
implementation 'com.github.mfietz:fyydlin:v0.5.0'
|
|
|
|
|
|
|
|
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
|
|
|
|
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
|
|
|
}
|