Reputation: 41
I am facing the problem where my application randomly crash without error after updating photo in firebase storage and trying to navigate to particular fragment. Last thing i got in log:
I/Process: Sending signal. PID: 8287 SIG: 9
I don't know how to check what makes application act like that. Could anyone give me advice how to check what is wrong or tell me if this log message has any tip what is happening?
Upvotes: 1
Views: 473
Reputation: 348
It happens that an application breaks without giving a reason, but the reason always exists.
Since you are using Firebase in the project, try connecting Crashlytics to the project (included in the Firebase ecosystem), this is done very quickly and easily and then you will definitely see your error in the Firebase console.
So you can see not only detailed information and error stacktrace for your specific problem, but also crashes of your users including detailed analytical information.
See details info here
Upvotes: 1