diff options
author | Docile-Alligator <chineseperson5@gmail.com> | 2021-09-23 12:02:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-23 12:02:10 +0000 |
commit | ccd80a3e15edc675e7296215f3828e5ff281d722 (patch) | |
tree | f3d357b3f7e2f89f1c5f91307be3067275d66bc1 /app/src/main/AndroidManifest.xml | |
parent | 97d630392cd8161c1428d1451f1690ee2a667830 (diff) | |
parent | cf9829046ac7ba92aa42db67468d23dd5b25cf97 (diff) | |
download | infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar.gz infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar.bz2 infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar.lz infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar.xz infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.tar.zst infinity-for-reddit-ccd80a3e15edc675e7296215f3828e5ff281d722.zip |
Merge branch 'master' into go-to-top-of-page-button
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 74 |
1 files changed, 52 insertions, 22 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 78090f43..e709293f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -272,70 +272,100 @@ <data android:host="www.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*"/> <data android:host="reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> + <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:scheme="https" + android:pathPattern=".*" /> <data android:host="m.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="old.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="new.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="np.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="reddit.app.link" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="redd.it" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="s.reddit.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="click.redditmail.com" - android:scheme="https" /> + android:scheme="https" + android:pathPattern=".*" /> <data android:host="www.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="amp.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="m.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="old.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="new.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="np.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="reddit.app.link" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="redd.it" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="s.reddit.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> <data android:host="click.redditmail.com" - android:scheme="http" /> + android:scheme="http" + android:pathPattern=".*" /> </intent-filter> </activity> <activity |