Disable Autofill compatibility for Firefox (#976)

Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Fabian Henneke 2020-07-27 13:15:44 +02:00 committed by GitHub
parent 98a91de716
commit a5669c87fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>