2014-05-06 23:58:20 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="keepass2android.plugin.qr"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
2014-05-07 09:30:52 -04:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.FLASHLIGHT"
|
|
|
|
android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
|
|
|
|
android:protectionLevel="normal" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<uses-feature android:name="android.hardware.camera"/>
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.camera.flash" android:required="false"/>
|
2014-05-06 23:58:20 -04:00
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="14"
|
|
|
|
android:targetSdkVersion="19" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/qrcode"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
|
|
|
android:name="keepass2android.plugin.qr.QRActivity"
|
|
|
|
android:label="@string/title_activity_qr" >
|
|
|
|
<intent-filter>
|
2014-05-07 09:30:52 -04:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
</intent-filter>
|
2014-05-06 23:58:20 -04:00
|
|
|
</activity>
|
2014-05-07 09:30:52 -04:00
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name="keepass2android.plugin.qr.AccessReceiver"
|
|
|
|
android:exported="true" >
|
2014-05-06 23:58:20 -04: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>
|
2014-05-07 09:30:52 -04:00
|
|
|
<receiver
|
|
|
|
android:name="keepass2android.plugin.qr.ActionReceiver"
|
|
|
|
android:exported="true" >
|
2014-05-06 23:58:20 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="keepass2android.ACTION_OPEN_ENTRY" />
|
|
|
|
<action android:name="keepass2android.ACTION_ENTRY_OUTPUT_MODIFIED" />
|
|
|
|
<action android:name="keepass2android.ACTION_ENTRY_ACTION_SELECTED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-05-07 09:30:52 -04:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="keepass2android.plugin.qr.MainActivity"
|
2014-05-07 09:46:36 -04:00
|
|
|
android:label="@string/title_activity_main"
|
|
|
|
>
|
2014-05-07 09:30:52 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="com.google.zxing.client.android.CaptureActivity"
|
2014-05-07 09:46:36 -04:00
|
|
|
android:label="Capture"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden">
|
2014-05-07 09:30:52 -04:00
|
|
|
|
|
|
|
</activity>
|
2014-05-09 07:02:49 -04:00
|
|
|
<activity android:name="com.google.zxing.client.android.PreferencesActivity"
|
|
|
|
android:label="Settings" />
|
2014-05-07 09:46:36 -04:00
|
|
|
|
|
|
|
|
2014-05-06 23:58:20 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|