Anyone able to get iOS password autofill feature to work? #6776
Unanswered
charlieswing
asked this question in
Q&A
Replies: 1 comment
-
Any luck with this? I am trying to scope this out for a client. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to implement Password Autofill feature for the iOS version of my React Native application that uses Firebase however I cannot get this to autofill.
All documentation I've seen for implementing this feature for React Native is pretty straightfoward however when it comes to hosting the apple-app-site-association in Firebase, there is some kind of disconnect. Below are the steps I take to try to implement this feature:
Add textContentType to username and password fields:
In Apple Developer Account I enabled Associated Domains as an entitlement in the mobile provision profile
In Firebase I created a Dynamic link (e.g. https://[appname].page.link
When I test the apple-app-site-association file by navigating in my brower (https://[appname].page.link/apple-app-site-association) I see
{"applinks":{"apps":[],"details":[{"appID":"[DEV TEAM ID].com.[appname]","paths":["NOT /_/*","/*"]}]}}
In XCode I add the Associated Domains cabability and point to the site which will host the apple-app-site-association file:
webcredentials:[appname].page.link
After these steps though, the autofill feature still does not work. I know I'm missing an important step but my Googling skills are coming up short today. Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions