Reputation: 61
I found that I didn't receive crash issues which was registered in a third party libs attached to project as dependency or like *.aar. I mean, for example, like this:
implementation 'xxxx:2.1.1'
I developed some library in my project and attached it as dependency to an app. I simulated some crash in this lib, but I didn't receive any crash report in Firebase. Moreover, I created the same library which is using NDK. But I also haven't any crash reports.
It seems that Firebase sends crashes which were detected only in the app, but we didn't send it from libs. It's not a good, because previously, in Fabric, we got it.
I had followed to the instructions which described here I had used:
dependencies {
// Recommended: Add the Firebase SDK for Google Analytics.
implementation 'com.google.firebase:firebase-analytics:17.4.2'
// Add the Firebase Crashlytics SDK.
implementation 'com.google.firebase:firebase-crashlytics:17.0.0'
}
Does anybody have the same situation?
Upvotes: 3
Views: 1340
Reputation: 76669
You might have to enable NDK crash reports; see Get Android NDK crash reports.
implementation 'com.google.firebase:firebase-crashlytics:17.0.0'
implementation 'com.google.firebase:firebase-crashlytics-ndk:17.0.0'
Upvotes: 0
Reputation: 1616
Firebaser here -
There are a couple things going on here. First, what we expect to work:
mathlibrary.add(number1, number2)
, that method call should get captured and symbolicated.What doesn't work:
Overall, what you're trying to do should work with Java code, and to diagnose your issue we'd need to know more about how you're setting up Crashlytics in your app and how you're setting up the library itself. Feel free to submit a support case with Firebase support as well with all that information.
Upvotes: 3
Reputation: 11
I used a third-party NDK library for my Android project and created a crash, but I didn't see any crash reports on the firebase site, but strangely enough, JAVA crashes were available on the site. I have checked the configuration of each step of the firebase SDK, and it is confirmed that there is no error. I want to know what the problem is, is it that firebase Crashlytics does not support third-party NDK crash reporting?
Upvotes: 0