2014-07-24 02:15:11 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-15 01:46:52 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.zeapo.pwdstore"
|
|
|
|
android:installLocation="auto">
|
|
|
|
|
2015-05-03 12:14:50 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-09-15 01:46:52 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
2015-07-28 09:11:02 +02:00
|
|
|
|
2018-12-25 21:46:01 +01:00
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
2018-11-22 11:50:40 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2019-01-14 00:11:25 +01:00
|
|
|
android:supportsRtl="true"
|
2019-09-15 01:46:52 +02:00
|
|
|
android:theme="@style/AppTheme"
|
2019-01-14 00:11:25 +01:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".PasswordStore"
|
2019-09-15 01:46:52 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:label="@string/app_name">
|
2018-11-22 11:50:40 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2019-10-01 18:44:28 +02:00
|
|
|
|
|
|
|
<activity android:name=".git.GitActivity" />
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".UserPreference"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
2019-09-15 01:46:52 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</activity>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".SshKeyGen"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
2019-09-15 01:46:52 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</activity>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<service
|
|
|
|
android:name=".autofill.AutofillService"
|
|
|
|
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.accessibilityservice.AccessibilityService" />
|
|
|
|
</intent-filter>
|
2019-09-15 01:46:52 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.accessibilityservice"
|
|
|
|
android:resource="@xml/autofill_config" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</service>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.AutofillActivity"
|
|
|
|
android:documentLaunchMode="intoExisting"
|
|
|
|
android:excludeFromRecents="true"
|
2019-10-01 18:44:28 +02:00
|
|
|
android:theme="@style/AppTheme"
|
2018-11-22 11:50:40 +01:00
|
|
|
tools:ignore="UnusedAttribute">
|
2019-09-15 01:46:52 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</activity>
|
2015-07-15 04:41:04 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.AutofillPreferenceActivity"
|
|
|
|
android:parentActivityName=".PasswordStore">
|
2019-09-15 01:46:52 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="com.zeapo.pwdstore.PasswordStore" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</activity>
|
2015-07-15 04:41:04 +02:00
|
|
|
|
2019-09-15 01:46:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".crypto.PgpActivity"
|
|
|
|
android:parentActivityName=".PasswordStore" />
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity android:name=".SelectFolderActivity" />
|
|
|
|
</application>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2014-07-24 02:15:11 +02:00
|
|
|
</manifest>
|