mirror of
https://github.com/bitwarden/android.git
synced 2026-03-12 05:04:17 -05:00
27 lines
1.0 KiB
XML
27 lines
1.0 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">
|
|
<!-- Disable Crashlytics for debug builds -->
|
|
<meta-data
|
|
android:name="firebase_crashlytics_collection_enabled"
|
|
android:value="false" />
|
|
<activity
|
|
android:name=".MainActivity"
|
|
tools:ignore="IntentFilterExportedReceiver">
|
|
<intent-filter android:autoVerify="true">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="https" />
|
|
<data android:host="*.bitwarden.pw" />
|
|
<data android:pathPattern="/redirect-connector.*" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|