diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-07-27 13:15:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 13:15:44 +0200 |
commit | a5669c87fd4a9e5845502b7a445615165dfea080 (patch) | |
tree | 5d2e30913f258553231ed12728a6e627ab239cc3 | |
parent | 98a91de7168109963267930741d7d53985b80108 (diff) |
Disable Autofill compatibility for Firefox (#976)
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | app/src/main/res/xml/oreo_autofill_service.xml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/app/src/main/res/xml/oreo_autofill_service.xml b/app/src/main/res/xml/oreo_autofill_service.xml index a790da21..8b76c803 100644 --- a/app/src/main/res/xml/oreo_autofill_service.xml +++ b/app/src/main/res/xml/oreo_autofill_service.xml @@ -3,7 +3,9 @@ ~ SPDX-License-Identifier: GPL-3.0-only --> -<autofill-service xmlns:android="http://schemas.android.com/apk/res/android"> +<autofill-service xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:ignore="UnusedAttribute"> <compatibility-package android:name="com.android.chrome" /> <compatibility-package android:name="com.brave.browser" /> <compatibility-package android:name="com.chrome.beta" /> @@ -12,7 +14,13 @@ <compatibility-package android:name="com.microsoft.emmx" /> <compatibility-package android:name="com.opera.mini.native" /> <compatibility-package android:name="com.opera.mini.native.beta" /> - <compatibility-package android:name="org.mozilla.fennec_fdroid" /> - <compatibility-package android:name="org.mozilla.firefox" /> - <compatibility-package android:name="org.mozilla.firefox_beta" /> + <compatibility-package + android:name="org.mozilla.fennec_fdroid" + android:maxLongVersionCode="679999" /> + <compatibility-package + android:name="org.mozilla.firefox" + android:maxLongVersionCode="679999" /> + <compatibility-package + android:name="org.mozilla.firefox_beta" + android:maxLongVersionCode="679999" /> </autofill-service> |