aboutsummaryrefslogtreecommitdiff
path: root/autofill-parser
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-06-12 17:24:00 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-06-12 17:24:00 +0530
commitfbd326fa485d02ece651f95881dd821679f15de1 (patch)
treeb8f5c68e873ef5c87272dd088974d3b1ba61268c /autofill-parser
parent68cf22fb75e72d373bd103bbd7993cd1bd9923e8 (diff)
autofill-parser: add missing `<queries>` tag
Diffstat (limited to 'autofill-parser')
-rw-r--r--autofill-parser/CHANGELOG.md1
-rw-r--r--autofill-parser/src/main/AndroidManifest.xml11
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>