diff options
author | andrewrasch <raschykid@gmail.com> | 2021-09-22 02:10:38 +0000 |
---|---|---|
committer | andrewrasch <raschykid@gmail.com> | 2021-09-22 02:10:38 +0000 |
commit | 1fb3ba6e3fa57904bdde486d5f6bb793be788f71 (patch) | |
tree | 169cba2723c54410e045e8e234035e900df05e4f /app/src/main/AndroidManifest.xml | |
parent | d6c3bfddd713b064e545461238978d3fa6c9941e (diff) | |
download | infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar.gz infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar.bz2 infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar.lz infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar.xz infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.tar.zst infinity-for-reddit-1fb3ba6e3fa57904bdde486d5f6bb793be788f71.zip |
Update link handling for amp and v.redd.it
Added manifest entries for google.com amp links (reddit only) and v.redd.it. Updated handling of google amp links in LinkResolverActivity.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 78090f43..f17f60e8 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -277,6 +277,13 @@ android:host="reddit.com" android:scheme="https" /> <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" /> + <data android:host="amp.reddit.com" android:scheme="https" /> <data |