Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
aids61517
3 years agoNew Contributor
How to build an app supporting 1Password?
Hi, I'm an Android Developer
I found my company's app doesn't support 1Password well, so I do some tests.
I build an app like below
with layout xml
```
<?xml version="1.0" encoding="...
Anonymous
3 years agoHi aids61517! Thanks for reaching out. Looking at your XML I don't see any reason why we wouldn't be filling, and you're right that changing the id
attribute for the field shouldn't have any effect.
That said, if no value is set for android:importantForAutofill
, the system will try to determine if the field is important for Autofill based on heuristics. I wonder if that's the case here, and it's simply determining it's not important based on the value of the field's id
. Could you please try setting the following:
android:importantForAutofill="yes"
Let me know if that helps!