2023-08-23 00:03:42 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
2023-12-19 22:27:35 +03:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
android:required="false" />
|
2024-02-14 19:39:28 +03:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.nfc"
|
|
|
|
android:required="false" />
|
2024-01-15 23:24:57 +03:00
|
|
|
|
2024-01-03 20:13:03 +03:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2024-01-26 02:56:19 +03:00
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
2024-02-14 19:39:28 +03:00
|
|
|
<uses-permission android:name="android.permission.NFC" />
|
2023-12-19 22:27:35 +03:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2024-01-03 20:13:03 +03:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2024-05-01 18:59:05 +03:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2023-12-19 22:27:35 +03:00
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
<application
|
|
|
|
android:name=".BitwardenApplication"
|
2024-01-09 06:52:26 +03:00
|
|
|
android:allowBackup="false"
|
2023-08-23 00:03:42 +03:00
|
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2024-01-15 23:24:57 +03:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2023-08-23 00:03:42 +03:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/LaunchTheme"
|
2024-01-13 00:43:18 +03:00
|
|
|
tools:targetApi="33">
|
2023-08-23 00:03:42 +03:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:exported="true"
|
2024-01-23 01:13:05 +03:00
|
|
|
android:launchMode="@integer/launchModeAPIlevel"
|
2023-10-26 00:32:40 +03:00
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
2024-04-25 23:01:13 +03:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2024-01-22 18:08:28 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="application/*" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
<data android:mimeType="video/*" />
|
|
|
|
<data android:mimeType="text/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2024-01-31 03:14:58 +03:00
|
|
|
<activity
|
|
|
|
android:name=".AutofillTotpCopyActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@style/AutofillTotpCopyTheme" />
|
|
|
|
|
2024-01-22 18:08:28 +03:00
|
|
|
<activity
|
2024-02-16 01:11:57 +03:00
|
|
|
android:name=".AuthCallbackActivity"
|
2024-01-22 18:08:28 +03:00
|
|
|
android:exported="true"
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
2023-10-03 22:34:51 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2023-10-24 17:11:07 +03:00
|
|
|
|
2023-10-03 22:34:51 +03:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2023-10-24 17:11:07 +03:00
|
|
|
|
2023-10-03 22:34:51 +03:00
|
|
|
<data
|
2023-10-24 17:11:07 +03:00
|
|
|
android:host="captcha-callback"
|
|
|
|
android:scheme="bitwarden" />
|
2023-10-03 22:34:51 +03:00
|
|
|
</intent-filter>
|
2024-01-23 06:29:03 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
2024-02-21 01:55:23 +03:00
|
|
|
<data
|
|
|
|
android:host="duo-callback"
|
|
|
|
android:scheme="bitwarden" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
2024-01-23 06:29:03 +03:00
|
|
|
<data
|
|
|
|
android:host="sso-callback"
|
|
|
|
android:scheme="bitwarden" />
|
|
|
|
</intent-filter>
|
2024-04-25 20:35:58 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="webauthn-callback"
|
|
|
|
android:scheme="bitwarden" />
|
|
|
|
</intent-filter>
|
2023-08-23 00:03:42 +03:00
|
|
|
</activity>
|
2024-01-02 22:39:50 +03:00
|
|
|
|
2024-01-17 01:25:59 +03:00
|
|
|
<provider
|
|
|
|
android:name="androidx.core.content.FileProvider"
|
|
|
|
android:authorities="${applicationId}.fileprovider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/file_paths" />
|
|
|
|
</provider>
|
|
|
|
|
2024-01-02 22:39:50 +03:00
|
|
|
<service
|
2024-01-03 06:15:08 +03:00
|
|
|
android:name=".data.autofill.BitwardenAutofillService"
|
2024-01-15 23:24:57 +03:00
|
|
|
android:exported="true"
|
2024-01-02 22:39:50 +03:00
|
|
|
android:label="Bitwarden"
|
2024-01-15 23:24:57 +03:00
|
|
|
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
2024-01-16 07:37:50 +03:00
|
|
|
<meta-data
|
|
|
|
android:name="android.autofill"
|
|
|
|
android:resource="@xml/autofill_service_configuration" />
|
2024-01-02 22:39:50 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.service.autofill.AutofillService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2024-01-13 00:43:18 +03:00
|
|
|
|
2024-02-12 23:06:21 +03:00
|
|
|
<!-- This is required to support in-app language picker in Android 12 (API 32) and below -->
|
2024-01-13 00:43:18 +03:00
|
|
|
<service
|
|
|
|
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
|
|
|
android:enabled="false"
|
|
|
|
android:exported="false">
|
|
|
|
<meta-data
|
|
|
|
android:name="autoStoreLocales"
|
|
|
|
android:value="true" />
|
|
|
|
</service>
|
2023-08-23 00:03:42 +03:00
|
|
|
</application>
|
|
|
|
|
2024-01-17 01:25:59 +03:00
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.media.action.IMAGE_CAPTURE" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
2023-08-23 00:03:42 +03:00
|
|
|
</manifest>
|