48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
<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>
|
|
<service
|
|
android:name="org.julianfamily.keepassgo.KeePassGOAccessibilityService"
|
|
android:exported="true"
|
|
android:label="KeePassGO Accessibility Fill"
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="android.accessibilityservice"
|
|
android:resource="@xml/keepassgo_accessibility_service" />
|
|
</service>
|
|
<provider
|
|
android:name="org.julianfamily.keepassgo.SharedVaultProvider"
|
|
android:authorities="org.julianfamily.keepassgo.share"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true" />
|
|
<activity
|
|
android:name="org.julianfamily.keepassgo.SharedVaultImportActivity"
|
|
android:exported="true"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="application/octet-stream" />
|
|
<data android:mimeType="application/x-keepass2" />
|
|
<data android:mimeType="application/vnd.keepass" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:scheme="content" android:pathPattern=".*\\.kdbx" />
|
|
<data android:scheme="file" android:pathPattern=".*\\.kdbx" />
|
|
</intent-filter>
|
|
</activity>
|