diff options
author | txtd <txtd@users.noreply.github.com> | 2020-01-07 19:33:01 +0100 |
---|---|---|
committer | txtd <txtd@users.noreply.github.com> | 2020-01-07 19:33:01 +0100 |
commit | 4636c01d738731f67a23e6d5062a5f7e14167cb5 (patch) | |
tree | 5f6a6c127866529e349c12efe5c4185614068ea6 /app | |
parent | e1f3452e619fd0fa7406611846a832d85eb1da12 (diff) | |
download | AntennaPod-4636c01d738731f67a23e6d5062a5f7e14167cb5.zip |
Add intent filters for subscribeonandroid.com to manifest
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 086206dcd..90299a60f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -297,6 +297,22 @@ <data android:scheme="antennapod-subscribe"/> </intent-filter> + <!--Support for subscribeonandroid.com URLS--> + + <intent-filter android:label="android.intent.action.VIEW"> + <action android:name="android.intent.action.VIEW" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + + <data android:pathPattern=".*\\..*/.*" /> + <data android:host="subscribeonandroid.com" /> + <data android:host="www.subscribeonandroid.com" /> + <data android:host="*subscribeonandroid.com" /> + <data android:scheme="http" /> + <data android:scheme="https" /> + </intent-filter> + <intent-filter> <action android:name="android.intent.action.SEND"/> |