diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-10-22 23:38:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 23:38:47 +0530 |
commit | 4a9151870d8e5196248b2abc09df8fbb1593c265 (patch) | |
tree | 7d738c1facc2bb2da98cbe8d794738487d7f2595 /app/src/main/res/xml | |
parent | 260145ce164855c9ed0c8555a5acfbac18563306 (diff) |
Remove accessibility autofill support (#1162)
* autofill: remove Accessibility backend
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* CHANGELOG: update
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/autofill_config.xml | 13 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 17 |
2 files changed, 0 insertions, 30 deletions
diff --git a/app/src/main/res/xml/autofill_config.xml b/app/src/main/res/xml/autofill_config.xml deleted file mode 100644 index a27e30cf..00000000 --- a/app/src/main/res/xml/autofill_config.xml +++ /dev/null @@ -1,13 +0,0 @@ -<!-- - ~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved. - ~ SPDX-License-Identifier: GPL-3.0-only - --> - -<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android" - android:accessibilityEventTypes="typeViewFocused|typeViewClicked|typeWindowStateChanged|typeWindowContentChanged" - android:accessibilityFeedbackType="feedbackGeneric" - android:accessibilityFlags="flagDefault|flagRetrieveInteractiveWindows|flagReportViewIds" - android:canRetrieveWindowContent="true" - android:description="@string/autofill_description" - android:notificationTimeout="100" - android:summary="@string/autofill_description" /> diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 6631133f..6b670618 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -25,23 +25,6 @@ app:key="oreo_autofill_custom_public_suffixes" app:summary="@string/preference_custom_public_suffixes_summary" app:title="@string/preference_custom_public_suffixes_title" /> - <Preference - app:key="autofill_apps" - app:title="@string/pref_autofill_apps_title" /> - <CheckBoxPreference - app:defaultValue="true" - app:key="autofill_default" - app:summary="@string/pref_autofill_default_hint" - app:title="@string/pref_autofill_default_title" /> - <CheckBoxPreference - app:defaultValue="false" - app:key="autofill_always" - app:title="@string/pref_autofill_always_title" /> - <CheckBoxPreference - app:defaultValue="false" - app:key="autofill_full_path" - app:summary="@string/pref_autofill_full_path_hint" - app:title="@string/pref_autofill_full_path_title" /> </PreferenceCategory> <PreferenceCategory app:title="@string/pref_repository_title"> |