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.
6
6
7
7
### Fixed
8
8
9
+ - Autofill now works much more reliably in Chrome 89 and later, including support for saving passwords if no accessibility service is enabled.
9
10
- Editing a password allowed accidentally overwriting an existing one
10
11
11
12
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ private val BROWSER_SAVE_FLAG = mapOf(
146
146
147
147
@RequiresApi(Build .VERSION_CODES .O )
148
148
private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf (
149
+ " com.android.chrome" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
149
150
" com.chrome.beta" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
150
151
" com.chrome.canary" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
151
152
" com.chrome.dev" to SaveInfo .FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE ,
@@ -181,7 +182,6 @@ fun getBrowserAutofillSupportInfoIfTrusted(
181
182
}
182
183
183
184
private val FLAKY_BROWSERS = listOf (
184
- " com.android.chrome" ,
185
185
" org.bromite.bromite" ,
186
186
" org.ungoogled.chromium.stable" ,
187
187
" com.kiwibrowser.browser" ,
You can’t perform that action at this time.
0 commit comments