Remove "Go" from the IMEAction denylist since it caused the autofill

behavior for apps like Chase not working. https://developer.android.com/reference/android/view/inputmethod/EditorInfo#IME_ACTION_GO

Test: m
Bug: 282805122
Change-Id: Ifcaad0ac7cb6c1d6019734b6f2f62eb89fe9fdf8
This commit is contained in:
jiewenlei
2023-05-17 20:54:03 -07:00
committed by Jiewen Lei
parent e61670d58e
commit ed75994907

View File

@@ -280,7 +280,7 @@ public class AutofillFeatureFlags {
private static final boolean DEFAULT_AFAA_ON_IMPORTANT_VIEW_ENABLED = true;
private static final String DEFAULT_AFAA_DENYLIST = "";
private static final String DEFAULT_AFAA_ALLOWLIST = "";
private static final String DEFAULT_AFAA_NON_AUTOFILLABLE_IME_ACTIONS = "2,3,4";
private static final String DEFAULT_AFAA_NON_AUTOFILLABLE_IME_ACTIONS = "3,4";
private static final boolean DEFAULT_AFAA_SHOULD_ENABLE_AUTOFILL_ON_ALL_VIEW_TYPES = true;
private static final boolean DEFAULT_AFAA_SHOULD_ENABLE_MULTILINE_FILTER = true;