Add Android autofill service packaging

This commit is contained in:
Joe Julian
2026-03-31 23:13:10 -07:00
parent 8499b4304e
commit 4cad54a696
42 changed files with 6324 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
<service
android:name="org.julianfamily.keepassgo.KeePassGOAutofillService"
android:exported="true"
android:label="KeePassGO Autofill"
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
<intent-filter>
<action android:name="android.service.autofill.AutofillService" />
</intent-filter>
<meta-data
android:name="android.autofill"
android:resource="@xml/keepassgo_autofill_service" />
</service>
Binary file not shown.
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<autofill-service xmlns:android="http://schemas.android.com/apk/res/android" />