diff options
author | Matthew Wong <wongma@protonmail.ch> | 2015-07-28 03:11:02 -0400 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-08-14 17:36:44 -0400 |
commit | 02bfcf6c3f5ddd806dd9a92823926eced139842f (patch) | |
tree | d68ea46b5ce6993910d8a015e6a286a1f9ae9c9f /app/src/main/res/xml | |
parent | eced1dd314ba651f862396c340492c6f2d9da926 (diff) |
Create app autofill service: a dialog pops up for all password fields & has a button to paste/set a password found in the store with name matching app's
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/autofill_config.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/src/main/res/xml/autofill_config.xml b/app/src/main/res/xml/autofill_config.xml new file mode 100644 index 00000000..618442ab --- /dev/null +++ b/app/src/main/res/xml/autofill_config.xml @@ -0,0 +1,8 @@ +<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android" + android:description="@string/autofill_description" + android:accessibilityEventTypes="typeViewFocused" + android:accessibilityFlags="flagDefault" + android:accessibilityFeedbackType="feedbackGeneric" + android:notificationTimeout="100" + android:canRetrieveWindowContent="true" + />
\ No newline at end of file |