diff options
-rw-r--r-- | autofill-parser/CHANGELOG.md | 1 | ||||
-rw-r--r-- | autofill-parser/src/main/AndroidManifest.xml | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/autofill-parser/CHANGELOG.md b/autofill-parser/CHANGELOG.md index 23e1e105..07cf5e22 100644 --- a/autofill-parser/CHANGELOG.md +++ b/autofill-parser/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. ### Added - [Mull](https://f-droid.org/packages/us.spotco.fennec_dos/) is now supported as an Autofill-capable browser. +- Raise target SDK to 31 ## [1.1.0] diff --git a/autofill-parser/src/main/AndroidManifest.xml b/autofill-parser/src/main/AndroidManifest.xml index e3cc34c8..6da6c1c0 100644 --- a/autofill-parser/src/main/AndroidManifest.xml +++ b/autofill-parser/src/main/AndroidManifest.xml @@ -3,4 +3,13 @@ ~ SPDX-License-Identifier: LGPL-3.0-only WITH LGPL-3.0-linking-exception --> -<manifest /> +<manifest xmlns:android="http://schemas.android.com/apk/res/android"> + + <queries> + <intent> + <action android:name="android.intent.action.VIEW" /> + <category android:name="android.intent.category.BROWSABLE" /> + <data android:scheme="https" /> + </intent> + </queries> +</manifest> |