2024-03-17 14:50:15 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-03-23 13:20:55 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2024-03-24 13:29:13 +01:00
|
|
|
android:versionCode="4"
|
|
|
|
android:versionName="1.1b">
|
2024-03-17 14:50:15 +01:00
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/logo"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true">
|
|
|
|
<activity
|
|
|
|
android:name=".activity.MainActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:theme="@style/Theme.Fidelity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<receiver
|
2024-03-22 07:26:37 +01:00
|
|
|
android:name=".pluginSDK.PluginAccessBroadcastReceiver"
|
2024-03-23 13:20:55 +01:00
|
|
|
android:exported="true"
|
|
|
|
tools:ignore="ExportedReceiver">
|
2024-03-17 14:50:15 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="keepass2android.ACTION_TRIGGER_REQUEST_ACCESS" />
|
|
|
|
<action android:name="keepass2android.ACTION_RECEIVE_ACCESS" />
|
|
|
|
<action android:name="keepass2android.ACTION_REVOKE_ACCESS" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
</application>
|
|
|
|
</manifest>
|