Skip to content

Commit

Permalink
add more patterns to match for rss feeds (to import them automatically)
Browse files Browse the repository at this point in the history
Signed-off-by: David Luhmer <david-dev@live.de>
  • Loading branch information
David-Development committed Sep 5, 2023
1 parent e0e91f0 commit c56de4b
Showing 1 changed file with 33 additions and 7 deletions.
40 changes: 33 additions & 7 deletions News-Android-App/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,39 @@
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />

<data android:scheme="http" />
<data android:host="*" />
<data android:pathPattern=".*\\atom.xml" />
<data android:pathPattern=".*\\rss.xml" />
<data android:pathPattern=".*\\.rss" />
<data android:pathPattern=".*/feed" />
<data android:pathPattern=".*feed/*" />
<data
android:host="*"
android:pathPattern=".*xml"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*rss"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*rss.*"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*RSS.*"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*feed.*"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*atom.xml"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*rss.xml"
android:scheme="https" />
<data
android:host="*"
android:pathPattern=".*\\.rss"
android:scheme="https" />

<data
android:host="*"
android:pathPattern=".*\\.opml"
Expand Down

0 comments on commit c56de4b

Please sign in to comment.