All Questions
Tagged with crashlytics-android or crashlytics
3,554 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
90
views
Firebase manual initialization
I’m using multiple Firebase configurations in my project that change at runtime. The setup follows the approach described here: https://github.com/firebase/firebase-android-sdk/issues/66 — meaning I’m ...
1
vote
0
answers
100
views
Firebase Crashlytics causing NoSuchMethodError for checkNotGoogleApiHandlerThread() in Flutter app
My Flutter app is crashing on startup with NoSuchMethodError when Firebase tries to initialize. The method checkNotGoogleApiHandlerThread() is not found in the Preconditions class, causing a FATAL ...
0
votes
1
answer
83
views
How to see events and reports in GA4 only from the one app source
My Firebase project contains multiple apps, each one is different, and each one has GA4/Google Analytics added. But I would like to see events and reports in the Analytica console for each app ...
0
votes
0
answers
82
views
How to see Crashlytics on Firebase having mentioned line of error for my obfuscated Flutter iOS app
I want to see error on Firebase Crashlytics with line of error for my iOS app developed on flutter which is obfuscated. It is showing crashes but those are non readable and line of error is not ...
0
votes
0
answers
28
views
firebase_crashlytics: missing user. id
I am using the table from firebase_crashlytics's export to BigQuery, but some records return a blank user_id, even though our development team has already completed the user_id setup. Firebase only ...
2
votes
1
answer
538
views
Firebase Crashlytics and NET9 MAUI errors
In my NET9 MAUI application, I'd like to add a tool to track the crashes. Because Microsoft AppCenter is going to be discontinued, I was thinking about Google Firebase.
I tried to install the package ...
2
votes
0
answers
74
views
Trouble with Crashlytics Debug Symbols + Xcode Cloud
I build my app with Xcode Cloud. In the ci_scripts in ci_post_xcodebuild.sh file I have the following:
#!/bin/sh
set -e
if [[ -n $CI_ARCHIVE_PATH ]];
then
echo "Found valid archive path, ...
0
votes
0
answers
98
views
The specified path, file name, or both are too long to install Plugin.Firebase
In my .NET 9 MAUI, I want to track the crashes using Firebase with component Plugin.Firebase. I saw the other issues opened like this one. I read the documents
https://github.com/TobiasBuchholz/...
2
votes
1
answer
67
views
How to check if app crashed due to fatal error on previous run
My use case is the following. After iOS app crashed I need to detect in the next application run if previous run exited due to fatal error crash and if yes then I should display some message at app ...
0
votes
0
answers
193
views
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.firebase.sessions.SessionLifecycleService"
In the new 12.8.6 version of our app, we removed the Firebase Crashlytics component. However, after release, we found that the SessionLifecycleService service from the firebase-sessions component—...
0
votes
0
answers
134
views
DSYM upload works fine but Crashlytics complain about unprocessed crashes
I wonder what Crashlytics want to tell me by this message at the top?
When I go to the dSYMs tab I see all dSYMs that Xcode uploads every time there is new build. I don't understand why I have ...
0
votes
0
answers
210
views
Firebase Crashlytics for macOS: "NSApplicationCrashOnExceptions is not set" warning despite Info.plist key
I’m integrating Firebase Crashlytics into a macOS AppKit app using Swift and I’m seeing a confusing console warning regarding NSApplicationCrashOnExceptions.
According to the documentation, when ...
0
votes
1
answer
96
views
How to upload mapping file of an Android obfuscated library to Crashlytics
We have an Android library that we obfuscate, we then have an application (un-obfuscated) that implements the library, which has Firebase Crashlytics implemented, is it possible to use the mapping ...
0
votes
0
answers
39
views
Device data is not visible when ANR occured on Firebase console - Android
Even though I can see the device info such as ram/disk free, orientation when crash occured, I can not see these info on Firebase Crashlytics console when ANR occured. What is the reason ?
firebase ...
0
votes
1
answer
164
views
Crashlytics installation for Flutter
My app runs Flutter on Android. I want to add Crashlytics, so I follow the instructions here.
As pre-requisites, I have installed the Firebase CLI and Flutterfire.
Step 1 of the instructions has 3 sub-...