Skip to content

Commit

Permalink
Add Crashlytics in release builds (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
julioromano committed Mar 10, 2023
1 parent d3534ba commit c82f0a6
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ plugins {
id(libs.plugins.android.application.get().pluginId)
id(libs.plugins.kotlin.android.get().pluginId)
id(libs.plugins.kotlin.kapt.get().pluginId)
// TODO // id(libs.plugins.google.services.get().pluginId)
// TODO // id(libs.plugins.google.firebase.crashlytics.get().pluginId)
// TODO // id(libs.plugins.google.firebase.appDistribution.get().pluginId)
id(libs.plugins.google.services.get().pluginId)
id(libs.plugins.google.firebase.crashlytics.get().pluginId)
// TODO // id(libs.plugins.playPublisher.get().pluginId)
id(libs.plugins.dagger.hilt.get().pluginId)
id(libs.plugins.google.secrets.get().pluginId)
Expand Down Expand Up @@ -143,6 +142,8 @@ dependencies {
implementation(platform(libs.androidx.compose.bom))
debugImplementation(libs.androidx.composeUiTestManifest)
debugImplementation(libs.androidx.composeUiTooling)
releaseImplementation(platform(libs.google.firebase.bom))
releaseImplementation(libs.google.firebase.crashlytics)
kapt(libs.google.daggerHiltCompiler)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.composeUiTestJunit4)
Expand Down
39 changes: 39 additions & 0 deletions app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "613195079771",
"project_id": "tmdb-explorer-bbf2a",
"storage_bucket": "tmdb-explorer-bbf2a.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:613195079771:android:67d1b6616df0d59c9edf7e",
"android_client_info": {
"package_name": "net.marcoromano.tmdb"
}
},
"oauth_client": [
{
"client_id": "613195079771-5m56hfai0d4sbtrgo7rbaehv0vg2lfhq.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyAhyWAOTU8800vwrQ9FhX0iV_vT7fAM0DY"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "613195079771-5m56hfai0d4sbtrgo7rbaehv0vg2lfhq.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

0 comments on commit c82f0a6

Please sign in to comment.