2020-05-13 20:52:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2021-03-09 10:15:27 +01:00
|
|
|
~ Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2020-05-13 17:31:41 +02:00
|
|
|
~ SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
-->
|
|
|
|
|
|
2014-07-24 02:15:11 +02:00
|
|
|
<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"
|
|
|
|
|
android:installLocation="auto">
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2015-05-03 12:14:50 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2020-03-05 16:35:50 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2022-04-21 20:04:14 +02:00
|
|
|
<!-- Required by Autofill to verify the certificate hashes of packages -->
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.QUERY_ALL_PACKAGES"
|
|
|
|
|
tools:ignore="QueryAllPackagesPermission" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2021-04-08 00:51:53 +02:00
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.camera.any"
|
|
|
|
|
android:required="false" />
|
|
|
|
|
|
2018-12-25 21:46:01 +01:00
|
|
|
<application
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".Application"
|
2018-12-25 21:46:01 +01:00
|
|
|
android:allowBackup="false"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
|
android:fullBackupContent="@xml/backup_content"
|
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"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/AppThemeM3"
|
2022-04-21 20:04:14 +02:00
|
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
|
tools:targetApi="s">
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.passwords.PasswordStore"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
|
android:exported="false" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2020-09-04 08:36:55 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.onboarding.activity.OnboardingActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
|
android:exported="false" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2021-01-12 06:49:28 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.proxy.ProxySelectorActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2023-01-26 07:44:11 +01:00
|
|
|
android:label="@string/activity_proxy_label"
|
2020-10-08 13:45:39 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2021-07-11 19:22:26 +02:00
|
|
|
<activity
|
2022-07-15 10:32:42 +02:00
|
|
|
android:name=".ui.crypto.DecryptActivity"
|
2021-07-11 19:22:26 +02:00
|
|
|
android:exported="true" />
|
|
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.main.LaunchActivity"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2021-11-01 15:23:19 +01:00
|
|
|
android:exported="true"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/NoBackgroundThemeM3">
|
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>
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2020-06-30 15:51:49 +02:00
|
|
|
<activity
|
|
|
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
|
|
|
android:clearTaskOnLaunch="true"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-06-30 15:51:49 +02:00
|
|
|
android:stateNotNeeded="true"
|
|
|
|
|
android:theme="@style/zxing_CaptureTheme"
|
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
|
tools:node="replace" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.git.config.GitServerConfigActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:label="@string/title_activity_git_clone"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.git.config.GitConfigActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:label="@string/title_activity_git_config"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2020-08-28 17:31:40 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.git.log.GitLogActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-08-28 17:31:40 +02:00
|
|
|
android:label="@string/title_activity_git_log" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.settings.SettingsActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-01-12 06:49:28 +01:00
|
|
|
android:label="@string/action_settings"
|
|
|
|
|
android:parentActivityName=".ui.passwords.PasswordStore" />
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2021-11-01 15:23:19 +01:00
|
|
|
<activity
|
2022-07-15 10:32:42 +02:00
|
|
|
android:name=".ui.crypto.PasswordCreationActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-07-11 19:22:26 +02:00
|
|
|
android:label="@string/new_password_title"
|
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
|
2020-03-05 16:35:50 +01:00
|
|
|
<service
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".util.services.ClipboardService"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:process=":clipboard_service_process" />
|
2020-07-09 10:30:24 +02:00
|
|
|
<service
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".util.services.PasswordExportService"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-07-09 10:30:24 +02:00
|
|
|
android:process=":password_export_service_process" />
|
2020-05-10 15:51:39 +02:00
|
|
|
<service
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".util.services.OreoAutofillService"
|
2021-11-01 15:23:19 +01:00
|
|
|
android:exported="true"
|
2020-03-24 14:03:40 +01:00
|
|
|
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.service.autofill.AutofillService" />
|
|
|
|
|
</intent-filter>
|
2020-05-10 15:51:39 +02:00
|
|
|
<meta-data
|
|
|
|
|
android:name="android.autofill"
|
|
|
|
|
android:resource="@xml/oreo_autofill_service" />
|
2020-03-24 14:03:40 +01:00
|
|
|
</service>
|
2021-03-09 10:42:24 +01:00
|
|
|
|
2022-04-21 20:04:14 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.folderselect.SelectFolderActivity"
|
|
|
|
|
android:exported="false" />
|
2021-01-12 06:49:28 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.sshkeygen.SshKeyImportActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/NoBackgroundThemeM3"
|
2021-01-12 06:49:28 +01:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-04-25 13:23:40 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.sshkeygen.SshKeyGenActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:label="@string/pref_ssh_keygen_title"
|
2020-04-25 13:23:40 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2021-07-11 19:22:26 +02:00
|
|
|
<activity
|
2022-07-15 10:32:42 +02:00
|
|
|
android:name=".ui.autofill.AutofillDecryptActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/NoBackgroundThemeM3" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.autofill.AutofillFilterView"
|
2020-03-24 14:03:40 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/DialogLikeThemeM3"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.autofill.AutofillSaveActivity"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/NoBackgroundThemeM3" />
|
2020-07-02 13:49:32 +02:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".autofill.oreo.ui.AutofillSmsActivity"
|
2020-07-02 13:49:32 +02:00
|
|
|
android:configChanges="orientation"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/DialogLikeThemeM3"
|
2020-07-02 13:49:32 +02:00
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2022-04-06 14:35:59 +02:00
|
|
|
android:name=".ui.autofill.AutofillPublisherChangedActivity"
|
2020-03-24 14:03:40 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2022-04-21 20:04:14 +02:00
|
|
|
android:exported="false"
|
2021-11-03 09:52:31 +01:00
|
|
|
android:theme="@style/DialogLikeThemeM3"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2022-04-21 20:04:14 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pgp.PGPKeyImportActivity"
|
2022-01-09 12:34:16 +01:00
|
|
|
android:theme="@style/NoBackgroundThemeM3" />
|
2022-07-18 19:22:45 +02:00
|
|
|
<activity
|
|
|
|
|
android:name=".ui.pgp.PGPKeyListActivity"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:label="@string/activity_label_pgp_key_manager"
|
|
|
|
|
android:parentActivityName=".ui.settings.SettingsActivity" />
|
2018-11-22 11:50:40 +01:00
|
|
|
</application>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2022-04-21 20:04:14 +02:00
|
|
|
<queries>
|
|
|
|
|
<package android:name="org.sufficientlysecure.keychain" />
|
|
|
|
|
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
|
</intent>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="https" />
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
|
|
|
|
|
2014-07-24 02:15:11 +02:00
|
|
|
</manifest>
|