I get this error:
[AutoFill] Cannot show Automatic Strong Passwords for app bundleID: com.my.app due to error: Cannot save passwords for this app. Make sure you have set up Associated Domains for your app and AutoFill Passwords is enabled in Settings
I have enabled associated domains and autofill credential provider
Associated domains is also enabled on appstore connect.
On my physical device autofill is enabled
This is my code
AutofillGroup(
child: Column(
children: <Widget>[
CupertinoTextField(
controller: email,
enableSuggestions: true,
keyboardType: TextInputType.emailAddress,
autofillHints: [AutofillHints.email],
),
CupertinoTextField(
controller: newPassword,
enableSuggestions: true,
autofillHints: [AutofillHints.newPassword],
)
],
),
)
I would like this to happen:


