-
-
Couldn't load subscription status.
- Fork 3.1k
Open
Labels
platform: Androidpriority: 2 mediumstatus: needs triageThis issue needs to triage, applied to new issuesThis issue needs to triage, applied to new issuestype: bug
Description
Hello, in my android app made with Tauri I have this issue: when using the html autocomplete attribute on text fields the credentials are saved to https://tauri.localhost by google password manager instead of being associated with my app.
I include a minimum reproducible example in the zip file
what happens in sequence is this:
- When registering a new account, ask google password manager to generate and save a new password using
autocomplete="email"for the email input andautocomplete="new-password"for the password inputs (note: in the example the "Register Account" button does nothing so I'm using gboard "suggest strong password" to open the google password manager prompt)
- The new credentials are saved to google password manager:
- During login I use
autocomplete="username"andautocomplete="current-password"for the input fields, which prompts google password manager for autofill:
- I see this weird prompt:
This is frustrating because it requires 2 biometric verifications during login, and why are the credentials being saved for https://tauri.localhost in google password manager? Also this is my assetlinks.json for context:
[
{
"relation": [
"delegate_permission/common.handle_all_urls",
"delegate_permission/common.get_login_creds"
],
"target": {
"namespace": "android_app",
"package_name": "com.myapp.dev",
"sha256_cert_fingerprints": [
"redacted"
]
}
}
]
Metadata
Metadata
Assignees
Labels
platform: Androidpriority: 2 mediumstatus: needs triageThis issue needs to triage, applied to new issuesThis issue needs to triage, applied to new issuestype: bug