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?