summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-04-25 23:10:18 +0200
committerByteHamster <info@bytehamster.com>2022-04-26 18:09:25 +0200
commit30be4628ae1cd07fe9d9ed584eb865f874869085 (patch)
treec09f4cf0187dfc82cda5f284eaea1ca9df51d6cd /app/build.gradle
parent20363ee41c814b14b16999505fa850a0943346dd (diff)
downloadAntennaPod-30be4628ae1cd07fe9d9ed584eb865f874869085.zip
Move feed discovery backends to their own module
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle10
1 files changed, 1 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 6a19bebb2..f740850b4 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -26,14 +26,6 @@ android {
}
buildConfigField "String", "COMMIT_HASH", ('"' + (commit.isEmpty() ? "Unknown commit" : commit) + '"')
- 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"'
- }
-
javaCompileOptions {
annotationProcessorOptions {
arguments = [eventBusIndex: 'de.danoeh.antennapod.ApEventBusIndex']
@@ -113,6 +105,7 @@ dependencies {
implementation project(":core")
implementation project(":event")
implementation project(':model')
+ implementation project(':net:discovery')
implementation project(':net:sync:gpoddernet')
implementation project(':net:sync:model')
implementation project(':parser:feed')
@@ -157,7 +150,6 @@ dependencies {
implementation 'com.github.shts:TriangleLabelView:1.1.2'
implementation 'com.leinardi.android:speed-dial:3.2.0'
implementation "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
- implementation 'com.github.mfietz:fyydlin:v0.5.0'
implementation 'com.github.ByteHamster:SearchPreference:v2.0.0'
implementation 'com.github.skydoves:balloon:1.4.0'
implementation 'com.github.xabaras:RecyclerViewSwipeDecorator:1.3'