summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2021-10-30 12:03:56 +0200
committerGitHub <noreply@github.com>2021-10-30 12:03:56 +0200
commitb680d05e44be9bb258d8c8f8146f22abcafb4952 (patch)
tree58b1f527b2410822e6a22dd4517594618e84728b /app/src/main/AndroidManifest.xml
parente45116caf73be840bf415621cf535c27cc271871 (diff)
parentec4b0bdd38a94c7a8a63b385a50e71ff7ddcb4fb (diff)
downloadAntennaPod-b680d05e44be9bb258d8c8f8146f22abcafb4952.zip
Merge pull request #5493 from ByteHamster/apple-feeds
Open Apple podcast urls
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index ba45c7997..f611cc791 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -316,6 +316,18 @@
</intent-filter>
<intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:pathPattern="/.*/podcast/.*" />
+ <data android:host="podcasts.apple.com" />
+ <data android:scheme="http" />
+ <data android:scheme="https" />
+ </intent-filter>
+
+ <intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>