mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
Move credential provider service declaration to standardDebug manifest (#1422)
This commit is contained in:
parent
1dcfad4451
commit
4fb27fe183
2 changed files with 20 additions and 22 deletions
|
@ -12,28 +12,6 @@
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<!--
|
|
||||||
The CredentialProviderService 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 credential
|
|
||||||
services.
|
|
||||||
-->
|
|
||||||
<!--suppress AndroidDomInspection -->
|
|
||||||
<service
|
|
||||||
android:name="com.x8bit.bitwarden.Autofill.CredentialProviderService"
|
|
||||||
android:enabled="true"
|
|
||||||
android:exported="true"
|
|
||||||
android:label="@string/bitwarden"
|
|
||||||
android:permission="android.permission.BIND_CREDENTIAL_PROVIDER_SERVICE"
|
|
||||||
tools:ignore="MissingClass">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.service.credentials.CredentialProviderService" />
|
|
||||||
</intent-filter>
|
|
||||||
<meta-data
|
|
||||||
android:name="android.credentials.provider"
|
|
||||||
android:resource="@xml/provider" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<!-- Disable Crashlytics for debug builds -->
|
<!-- Disable Crashlytics for debug builds -->
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="firebase_crashlytics_collection_enabled"
|
android:name="firebase_crashlytics_collection_enabled"
|
||||||
|
|
|
@ -10,6 +10,26 @@
|
||||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
<!--
|
||||||
|
The CredentialProviderService 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 credential
|
||||||
|
services.
|
||||||
|
-->
|
||||||
|
<!--suppress AndroidDomInspection -->
|
||||||
|
<service
|
||||||
|
android:name="com.x8bit.bitwarden.Autofill.CredentialProviderService"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="true"
|
||||||
|
android:label="@string/bitwarden"
|
||||||
|
android:permission="android.permission.BIND_CREDENTIAL_PROVIDER_SERVICE"
|
||||||
|
tools:ignore="MissingClass">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.service.credentials.CredentialProviderService" />
|
||||||
|
</intent-filter>
|
||||||
|
<meta-data
|
||||||
|
android:name="android.credentials.provider"
|
||||||
|
android:resource="@xml/provider" />
|
||||||
|
</service>
|
||||||
<!-- Disable Crashlytics for debug builds -->
|
<!-- Disable Crashlytics for debug builds -->
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="firebase_crashlytics_collection_enabled"
|
android:name="firebase_crashlytics_collection_enabled"
|
||||||
|
|
Loading…
Reference in a new issue