diff options
author | Docile-Alligator <chineseperson5@gmail.com> | 2021-09-26 11:08:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-26 11:08:21 +0000 |
commit | fa645f932dde88cdffc61e1f240636be0a4c6648 (patch) | |
tree | 87a1120242e24d9e84145f648b3124c5cd032818 /app | |
parent | a80489b41b68f5b755de1fa9f556069342470a19 (diff) | |
parent | 0b9e347cfb564db905ee55826376197e07beb2f9 (diff) | |
download | infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar.gz infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar.bz2 infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar.lz infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar.xz infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.tar.zst infinity-for-reddit-fa645f932dde88cdffc61e1f240636be0a4c6648.zip |
Merge pull request #474 from andrewrasch/intent-filter-cleanup
Cleanup on intent filters.
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 114 |
1 files changed, 21 insertions, 93 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e709293f..edad7ed5 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -266,107 +266,35 @@ <activity android:name=".activities.LinkResolverActivity"> <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:host="www.reddit.com" - android:scheme="https" - android:pathPattern=".*"/> - <data - android:host="reddit.com" - android:scheme="https" - android:pathPattern=".*" /> + <data android:scheme="https"/> + <data android:scheme="http"/> + + <data android:host="www.reddit.com"/> + <data android:host="reddit.com"/> + <data android:host="v.redd.it"/> + <data android:host="amp.reddit.com"/> + <data android:host="m.reddit.com"/> + <data android:host="old.reddit.com"/> + <data android:host="new.reddit.com"/> + <data android:host="np.reddit.com"/> + <data android:host="reddit.app.link"/> + <data android:host="redd.it"/> + <data android:host="s.reddit.com"/> + <data android:host="click.redditmail.com"/> + </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:host="www.google.com" android:scheme="https" android:pathPattern="/amp/s/amp.reddit.com/.*" /> - <data - android:host="v.redd.it" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="amp.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="m.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="old.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="new.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="np.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="reddit.app.link" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="redd.it" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="s.reddit.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="click.redditmail.com" - android:scheme="https" - android:pathPattern=".*" /> - <data - android:host="www.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="amp.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="m.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="old.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="new.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="np.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="reddit.app.link" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="redd.it" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="s.reddit.com" - android:scheme="http" - android:pathPattern=".*" /> - <data - android:host="click.redditmail.com" - android:scheme="http" - android:pathPattern=".*" /> </intent-filter> + </activity> <activity android:name=".activities.SearchActivity" |