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" />
|
2019-10-02 07:30:45 +02:00
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
|
|
<!--suppress DeprecatedClassUsageInspection -->
|
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
2020-03-05 16:35:50 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2015-07-28 09:11:02 +02:00
|
|
|
|
2018-12-25 21:46:01 +01:00
|
|
|
<application
|
2020-01-26 07:05:10 +01:00
|
|
|
android:name=".Application"
|
2018-12-25 21:46:01 +01:00
|
|
|
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"
|
2020-04-12 21:10:40 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2019-01-14 00:11:25 +01:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2019-10-02 07:30:45 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".PasswordStore"
|
2019-09-15 01:46:52 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2019-10-02 07:30:45 +02:00
|
|
|
android:label="@string/app_name" />
|
|
|
|
|
|
|
|
<activity android:name=".LaunchActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="orientation|screenSize">
|
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
|
|
|
|
2020-04-17 15:06:07 +02:00
|
|
|
<activity android:name=".git.GitOperationActivity"
|
|
|
|
android:theme="@style/NoBackgroundTheme" />
|
|
|
|
|
|
|
|
<activity android:name=".git.GitServerConfigActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:label="@string/title_activity_git_clone" />
|
|
|
|
|
|
|
|
<activity android:name=".git.GitConfigActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:label="@string/title_activity_git_config" />
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".UserPreference"
|
2020-03-21 13:14:13 +01:00
|
|
|
android:parentActivityName=".PasswordStore"
|
|
|
|
android:label="@string/action_settings" />
|
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>
|
2020-03-05 16:35:50 +01:00
|
|
|
<service
|
|
|
|
android:name=".ClipboardService"
|
|
|
|
android:process=":clipboard_service_process" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<service android:name=".autofill.oreo.OreoAutofillService"
|
|
|
|
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/oreo_autofill_service" />
|
|
|
|
</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"
|
2019-11-06 20:34:42 +01:00
|
|
|
tools:ignore="UnusedAttribute" />
|
2015-07-15 04:41:04 +02:00
|
|
|
|
2019-11-06 20:34:42 +01:00
|
|
|
<activity android:name=".autofill.AutofillPreferenceActivity" />
|
2015-07-15 04:41:04 +02:00
|
|
|
|
2019-09-15 01:46:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".crypto.PgpActivity"
|
2019-11-12 21:51:34 +01:00
|
|
|
android:parentActivityName=".PasswordStore"
|
2020-03-29 15:16:42 +02:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:configChanges="orientation|screenSize" />
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity android:name=".SelectFolderActivity" />
|
2020-04-25 13:23:40 +02:00
|
|
|
<activity
|
|
|
|
android:label="@string/pref_ssh_keygen_title"
|
|
|
|
android:name=".sshkeygen.SshKeyGenActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-05-09 19:44:24 +02:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.oreo.ui.AutofillDecryptActivity"
|
|
|
|
android:theme="@style/NoBackgroundTheme" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.oreo.ui.AutofillFilterView"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:windowSoftInputMode="adjustNothing"
|
|
|
|
android:theme="@style/DialogLikeTheme" />
|
|
|
|
<activity
|
|
|
|
android:name=".autofill.oreo.ui.AutofillSaveActivity"
|
2020-05-09 19:44:24 +02:00
|
|
|
android:theme="@style/NoBackgroundTheme"/>
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.oreo.ui.AutofillPublisherChangedActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:windowSoftInputMode="adjustNothing"
|
|
|
|
android:theme="@style/DialogLikeTheme" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</application>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2014-07-24 02:15:11 +02:00
|
|
|
</manifest>
|