Skip to content

Commit

Permalink
Enable crashlytics (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintPatrck authored Apr 30, 2024
1 parent b597a2f commit 1a59227
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
alias(libs.plugins.android.application)
// alias(libs.plugins.crashlytics)
alias(libs.plugins.crashlytics)
alias(libs.plugins.hilt)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.parcelize)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.kotlinx.kover)
alias(libs.plugins.ksp)
// alias(libs.plugins.google.services)
alias(libs.plugins.google.services)
}

android {
Expand Down
12 changes: 12 additions & 0 deletions app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?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" />
</application>

</manifest>
29 changes: 29 additions & 0 deletions app/src/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "867301491091",
"project_id": "bitwarden-authenticator",
"storage_bucket": "bitwarden-authenticator.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:867301491091:android:50b626dba42a361651e866",
"android_client_info": {
"package_name": "com.bitwarden.authenticator"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyDDXnnBuWzuh8rlihiMWRPif_sqkGk3fxw"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}

0 comments on commit 1a59227

Please sign in to comment.