35 lines
1.2 KiB
Groovy
35 lines
1.2 KiB
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../../common.gradle"
|
|
apply from: "../../playFlavor.gradle"
|
|
|
|
android {
|
|
namespace "de.danoeh.antennapod.net.discovery"
|
|
|
|
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')
|
|
implementation project(':net:common')
|
|
implementation project(':storage:preferences')
|
|
implementation project(':ui:i18n')
|
|
|
|
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"
|
|
}
|