crashlytics

Android multiple firebase projects using firebase-crashlytics

本小妞迷上赌 提交于 2021-02-08 09:33:49
问题 Is it possible on android to programmatically initialize firebase-crashlytics SDK so it would not use the data in google-services.json ? I am asking this because we use two firebase projects and currently google-services.json is of the project we use for Push notifications and AdMob integration, and I cannot replace it with google-services.json of the second project we have set up for crashlytics. I have already tried using FirebaseOptions from my Application onCreate as follows:

Fabric crashlytics reports crashes in obfuscated format

依然范特西╮ 提交于 2021-02-04 17:10:23
问题 I use crashlytics to send my reports but crashs not de-obfuscated like this: Fatal Exception: c.a I readed here and added -keepattributes *Annotation* -keepattributes SourceFile,LineNumberTable to my proguard-rules file and there is no -printmapping mapping.txt in my configuration files. this is my build.gradle buildTypes part: buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug_server {

Fabric crashlytics reports crashes in obfuscated format

与世无争的帅哥 提交于 2021-02-04 17:07:36
问题 I use crashlytics to send my reports but crashs not de-obfuscated like this: Fatal Exception: c.a I readed here and added -keepattributes *Annotation* -keepattributes SourceFile,LineNumberTable to my proguard-rules file and there is no -printmapping mapping.txt in my configuration files. this is my build.gradle buildTypes part: buildTypes { release { minifyEnabled true shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug_server {

Firebase: Reporting Analytics and Crash Data to Separate Projects

送分小仙女□ 提交于 2021-02-04 15:28:19
问题 Recently I came across this article from firebase, which details how to access multiple projects from a single application. This is great, and potentially very useful, however I have been unable to find a way to separate out using Analytics and Crash reporting into separate projects. The reason we would like to do this is so that our clients have full access to their analytics, whilst keeping the crash logs in a different project that only we can access. I did see that on the article it

Initializing Firebase crashlytics in android

僤鯓⒐⒋嵵緔 提交于 2021-01-29 06:29:46
问题 I have migrated Fabric Crashlytics to Firebase Crashlytics in my android project. While using fabric, in activity class I have used below line, Fabric.with(this, new Crashlytics()); But after migration, what is the exact replacement of this in Firebase Crashlytics. Thanks in Advance.. 回答1: You have to follow the Firebase tutorial when activating the Crashlytics. You don't need any code to initialize Crashlytics, it's automatic. The only thing you need, following the tutorial, is to make an

Whitelisting Firebase Crashlytics SDK

Deadly 提交于 2021-01-28 12:00:33
问题 I just finished a migration to the new Firebase Crashlytics SDK. On the past I added rules in accordance to this post. But as you may notice it relates to the now deprecated Fabric alternative. What is the newest update on this matter? Which domains should I whitelist if I want to allow the reports to go through a firewall. 回答1: the endpoints at present time remain the same. However, at some point this year this will need to be updated. 回答2: Here is the updated information: For Firebase

Firebase Crashlytics: missing OPTIONAL dSYMs

旧巷老猫 提交于 2021-01-28 01:04:36
问题 We've moved from fabric.io to Firebase and everything seems to be ok except one thing. We're using Unity 2019.2.6 , target platform is iOS , target architecture is " Universal ". For dSYMs uploading I pack dSYMs folder from *.xcarchive to dSYMs.zip and upload it to Firebase via the following code ./upload-symbols -gsp <path_to_plist>/GoogleService-Info.plist -p ios <path_to_dSYMs.zip>/dSYMs.zip As a result I see the following lines in my terminal: Successfully submitted symbols for

firebase sendUnsentReports() sends exceptions only after restart

久未见 提交于 2021-01-27 21:08:56
问题 I want to send info about user non-fatal exceptions through recordException() method, but default crashlytics implementation sends them only after app is restarted (which is quite a strange behaviour o_O) I tried to disable automatic reports collection through setCrashlyticsCollectionEnabled(false) method and send them manually through sendUnsentReports(), but, alas, firebase continues to send them only after the app is restarted. Has anybody solved that kind of a problem and how? 回答1: Yes,

How to export crash-free users from firebase?

旧街凉风 提交于 2021-01-27 14:22:23
问题 I want to persist data about crashes and metrics of crash-free users in my database for further analyze. I have already linked the project to BigQuery, but can't find a way to calculate crash-free users value by data, which contained in BigQuery. It's possible to export crash-free users metrics in some way? 回答1: Fabric/Firebaser here - The Firebase Crashlytics export to BigQuery doesn't include crash-free users because Google Analytics for Firebase is needed to calculate the crash-free users

How do I integrate Firebase.Crashlytics on my Xamarin.Forms Project

谁说胖子不能爱 提交于 2021-01-27 05:54:25
问题 Can any one help me with integrating Firebase.Crashlytics on a Xamarin.Forms project for iOS. It is working fine for me on Android but on iOS I am facing issues. Note that I have performed the following steps on iOS :- Added Xamarin.Firebase.iOS.Crashlytics Nuget package to my iOS project. Added GoogleService.plist file Made a dependency service for iOS Added the following code to initialize the nuget :- Firebase.Core.App.Configure(); Crashlytics.Configure(); Fabric.Fabric.SharedSdk.Debug =