mirror of
https://github.com/bitwarden/android.git
synced 2026-05-01 20:58:17 -05:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<application tools:ignore="MissingApplicationIcon">
|
|
<!--
|
|
The AutofillTileService name below refers to the legacy Xamarin app's service name.
|
|
This must always match in order for the app to properly query if it is providing autofill
|
|
tile services.
|
|
-->
|
|
<!--suppress AndroidDomInspection -->
|
|
<service
|
|
android:name="com.x8bit.bitwarden.AutofillTileService"
|
|
android:exported="true"
|
|
android:icon="@drawable/ic_notification"
|
|
android:label="@string/autofill"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
|
tools:ignore="MissingClass">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<!-- Disable Crashlytics for debug builds -->
|
|
<meta-data
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
android:value="false" />
|
|
</application>
|
|
|
|
</manifest>
|