diff options
author | Seth Golub <seth@sethoscope.net> | 2013-07-13 22:54:18 -0700 |
---|---|---|
committer | Seth Golub <seth@sethoscope.net> | 2013-07-13 22:54:18 -0700 |
commit | e3e828f01df1d69464415526f979646a6aeadff3 (patch) | |
tree | bed7870f991c5665a2b46a1a3db80795303b0db5 | |
parent | 941fa9062e2ac1709e8c99208e2f63226fe2c7a8 (diff) | |
download | AntennaPod-e3e828f01df1d69464415526f979646a6aeadff3.zip |
add https scheme to RSS/Atom intent filters
-rw-r--r-- | AndroidManifest.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 38441a520..28d29f39b 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -60,6 +60,7 @@ <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http"/> + <data android:scheme="https"/> <data android:host="*"/> <data android:pathPattern=".*\\.xml"/> <data android:pathPattern=".*\\.rss"/> @@ -70,6 +71,7 @@ <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http"/> + <data android:scheme="https"/> <data android:host="feeds.feedburner.com"/> <data android:host="feedproxy.google.com"/> <data android:host="feeds2.feedburner.com"/> @@ -81,6 +83,7 @@ <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="http"/> + <data android:scheme="https"/> <data android:mimeType="text/xml"/> <data android:mimeType="application/rss+xml"/> <data android:mimeType="application/atom+xml"/> |