This repository was archived by the owner on Oct 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
66
77### Fixed
88
9+ - Autofill now works much more reliably in Chrome 89 and later, including support for saving passwords if no accessibility service is enabled.
910- Editing a password allowed accidentally overwriting an existing one
1011
1112
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ private val BROWSER_SAVE_FLAG = mapOf(
146146
147147@RequiresApi(Build .VERSION_CODES .O )
148148private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf (
149+ " com.android.chrome" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
149150 " com.chrome.beta" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
150151 " com.chrome.canary" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
151152 " com.chrome.dev" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
@@ -181,7 +182,6 @@ fun getBrowserAutofillSupportInfoIfTrusted(
181182}
182183
183184private val FLAKY_BROWSERS = listOf (
184- " com.android.chrome" ,
185185 " org.bromite.bromite" ,
186186 " org.ungoogled.chromium.stable" ,
187187 " com.kiwibrowser.browser" ,
You can’t perform that action at this time.
0 commit comments