2014-07-24 00:15:11 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-10-22 21:15:24 +00:00
|
|
|
package="com.zeapo.pwdstore">
|
2015-05-03 10:14:50 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2015-07-28 07:11:02 +00:00
|
|
|
<uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE" />
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
|
2014-09-23 07:58:05 +00:00
|
|
|
<application android:allowBackup="true" android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name" android:theme="@style/AppTheme">
|
2015-07-19 11:51:24 +00:00
|
|
|
<activity android:name=".PasswordStore" android:label="@string/app_name"
|
|
|
|
android:configChanges="orientation|screenSize">
|
2014-09-23 07:58:05 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-12-17 21:55:45 +00:00
|
|
|
<activity android:name=".git.GitActivity"
|
2014-09-23 07:58:05 +00:00
|
|
|
android:parentActivityName=".PasswordStore">
|
|
|
|
<meta-data android:name="android.PARENT_ACTIVITY1"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
|
|
|
</activity>
|
|
|
|
|
2014-10-22 21:15:24 +00:00
|
|
|
<activity android:name=".UserPreference"
|
2014-09-23 07:58:05 +00:00
|
|
|
android:parentActivityName=".PasswordStore">
|
|
|
|
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
|
|
|
</activity>
|
|
|
|
|
2014-10-22 21:15:24 +00:00
|
|
|
<activity android:name=".crypto.PgpHandler"
|
2015-07-19 11:51:24 +00:00
|
|
|
android:parentActivityName=".PasswordStore"
|
|
|
|
android:configChanges="orientation|screenSize">
|
2014-09-23 07:58:05 +00:00
|
|
|
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
|
|
|
</activity>
|
2015-04-19 22:26:21 +00:00
|
|
|
|
2015-07-15 02:41:04 +00:00
|
|
|
<activity android:name=".SshKeyGen"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
|
|
|
|
|
|
|
<meta-data android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
|
|
|
</activity>
|
|
|
|
|
2015-07-28 07:11:02 +00:00
|
|
|
<service android:name=".AutofillService"
|
|
|
|
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/autofill_config" />
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<activity android:name=".AutofillActivity">
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
2015-04-19 22:26:21 +00:00
|
|
|
<activity android:name="net.rdrei.android.dirchooser.DirectoryChooserActivity" />
|
2014-09-23 07:58:05 +00:00
|
|
|
</application>
|
|
|
|
|
2014-07-24 00:15:11 +00:00
|
|
|
</manifest>
|