mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 03:08:50 +03:00
Disable Crashlytic collection for debug builds (#500)
This commit is contained in:
parent
41c35e23dd
commit
db5c19d971
2 changed files with 14 additions and 0 deletions
|
@ -4,6 +4,8 @@ import com.google.gms.googleservices.GoogleServicesTask
|
|||
|
||||
plugins {
|
||||
alias(libs.plugins.android.application)
|
||||
// Crashlytics is enabled for all builds initially but removed for FDroid builds in gradle and
|
||||
// standardDebug builds in the merged manifest.
|
||||
alias(libs.plugins.crashlytics)
|
||||
alias(libs.plugins.detekt)
|
||||
alias(libs.plugins.hilt)
|
||||
|
|
12
app/src/standardDebug/AndroidManifest.xml
Normal file
12
app/src/standardDebug/AndroidManifest.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application tools:ignore="MissingApplicationIcon">
|
||||
<!-- Disable Crashlytics for debug builds -->
|
||||
<meta-data
|
||||
android:name="firebase_crashlytics_collection_enabled"
|
||||
android:value="false" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
Loading…
Add table
Reference in a new issue