bitwarden-android/app/src/main/AndroidManifest.xml

106 lines
3.9 KiB
XML
Raw Normal View History

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">
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
2024-01-15 23:24:57 +03:00
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
2023-08-23 00:03:42 +03:00
<application
android:name=".BitwardenApplication"
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"
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"
tools:targetApi="33">
2023-08-23 00:03:42 +03:00
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleInstancePerTask"
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>
<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">
<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="captcha-callback"
android:scheme="bitwarden" />
</intent-filter>
2023-08-23 00:03:42 +03:00
</activity>
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>
<service
android:name=".data.autofill.BitwardenAutofillService"
2024-01-15 23:24:57 +03:00
android:exported="true"
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" />
<intent-filter>
<action android:name="android.service.autofill.AutofillService" />
</intent-filter>
</service>
<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>