Streletz
Streletz

Reputation: 202

Get information about all exceptions in the application

I writing an error log.

You should be aware of any exceptions that occurred while the application was running.

In addition to preserving the text of e.getMessage() with each exception, are there other ways to implement it?

Upvotes: 0

Views: 55

Answers (1)

Tamir Abutbul
Tamir Abutbul

Reputation: 7661

You can connect your app to firebase and use the crashlytics - the crash reporter of firebase.
It will alert you every time your app will crash(from exceptions for example), you can later see those crashes for every phone that has the app installed.

Upvotes: 2

Related Questions