2020-05-13 20:52:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2020-05-13 17:31:41 +02:00
|
|
|
~ Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
|
|
|
|
~ 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"
|
2020-12-05 01:37:18 +01:00
|
|
|
package="dev.msfjarvis.aps"
|
2019-09-15 01:46:52 +02:00
|
|
|
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.SYSTEM_ALERT_WINDOW" />
|
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"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:requestLegacyExternalStorage="true"
|
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">
|
2019-10-02 07:30:45 +02:00
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.passwords.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" />
|
|
|
|
|
2020-09-04 08:36:55 +02:00
|
|
|
<activity
|
2020-09-15 18:23:12 +02:00
|
|
|
android:name=".ui.onboarding.activity.OnboardingActivity"
|
2020-09-04 08:36:55 +02:00
|
|
|
android:configChanges="orientation|screenSize" />
|
|
|
|
|
2020-10-08 13:45:39 +02:00
|
|
|
<activity android:name=".ui.proxy.ProxySelectorActivity"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.main.LaunchActivity"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:configChanges="orientation|screenSize"
|
2020-10-23 07:29:42 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/NoBackgroundTheme">
|
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-06-30 15:51:49 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
|
|
android:clearTaskOnLaunch="true"
|
|
|
|
android:stateNotNeeded="true"
|
|
|
|
android:theme="@style/zxing_CaptureTheme"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden"
|
|
|
|
tools:node="replace" />
|
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.git.config.GitServerConfigActivity"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:label="@string/title_activity_git_clone"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2020-04-17 15:06:07 +02:00
|
|
|
|
2020-05-10 15:51:39 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.git.config.GitConfigActivity"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:label="@string/title_activity_git_config"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2020-08-28 17:31:40 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.git.log.GitLogActivity"
|
2020-08-28 17:31:40 +02:00
|
|
|
android:label="@string/title_activity_git_log" />
|
|
|
|
|
2018-11-22 11:50:40 +01:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.settings.UserPreference"
|
2021-01-08 15:13:52 +01:00
|
|
|
android:label="@string/action_settings" />
|
2020-05-10 15:51:39 +02:00
|
|
|
|
2020-06-12 16:58:15 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.crypto.PasswordCreationActivity"
|
2020-06-12 16:58:15 +02:00
|
|
|
android:label="@string/new_password_title"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.crypto.DecryptActivity"
|
2020-06-12 16:58:15 +02:00
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
|
|
2020-07-23 17:59:04 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.crypto.GetKeyIdsActivity"
|
2020-07-23 17:59:04 +02:00
|
|
|
android:theme="@style/NoBackgroundTheme" />
|
|
|
|
|
2020-03-05 16:35:50 +01:00
|
|
|
<service
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".util.services.ClipboardService"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:process=":clipboard_service_process" />
|
2020-07-09 10:30:24 +02:00
|
|
|
<service
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".util.services.PasswordExportService"
|
2020-07-09 10:30:24 +02:00
|
|
|
android:process=":password_export_service_process" />
|
2020-05-10 15:51:39 +02:00
|
|
|
<service
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".util.services.OreoAutofillService"
|
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>
|
2014-09-23 09:58:05 +02:00
|
|
|
|
2020-12-05 01:37:18 +01:00
|
|
|
<activity android:name=".ui.folderselect.SelectFolderActivity" />
|
2020-04-25 13:23:40 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.sshkeygen.SshKeyGenActivity"
|
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" />
|
2020-05-09 19:44:24 +02:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.autofill.AutofillDecryptActivity"
|
2020-05-09 19:44:24 +02:00
|
|
|
android:theme="@style/NoBackgroundTheme" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.autofill.AutofillFilterView"
|
2020-03-24 14:03:40 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:theme="@style/DialogLikeTheme"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.autofill.AutofillSaveActivity"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:theme="@style/NoBackgroundTheme" />
|
2020-07-02 13:49:32 +02:00
|
|
|
<activity
|
|
|
|
android:name=".autofill.oreo.ui.AutofillSmsActivity"
|
|
|
|
android:configChanges="orientation"
|
|
|
|
android:theme="@style/DialogLikeTheme"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
2020-03-24 14:03:40 +01:00
|
|
|
<activity
|
2020-12-05 01:37:18 +01:00
|
|
|
android:name=".ui.autofill.AutofillPublisherChangedActivity"
|
2020-03-24 14:03:40 +01:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2020-05-10 15:51:39 +02:00
|
|
|
android:theme="@style/DialogLikeTheme"
|
|
|
|
android:windowSoftInputMode="adjustNothing" />
|
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>
|