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-01-15 23:24:57 +03:00
|
|
|
|
2024-01-03 20:13:03 +03:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
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" />
|
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-13 00:43:18 +03:00
|
|
|
android:localeConfig="@xml/locales_config"
|
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-20 00:01:43 +03:00
|
|
|
android:launchMode="singleInstancePerTask"
|
2023-10-26 00:32:40 +03:00
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
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>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".WebAuthCallbackActivity"
|
|
|
|
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>
|
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
|
|
|
|
|
|
|
<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>
|