Lisa Anne
Lisa Anne

Reputation: 4595

What to use to get uncaught exception / crash reports

I am debugging an Android application.

The problem is that there are some elusive Activity crashes.

They are not Application crashes, but rather Activity crashes, since the application does not close, only the current activity does.

The point is that Google Play does not send me the information about these kinds of exceptions and Activity crashes.

Please any suggestion?

Thanks!

Upvotes: 1

Views: 64

Answers (4)

Blackbelt
Blackbelt

Reputation: 157457

I've been using HockeyApp for a while and it is really nice

Upvotes: 1

Ye Lin Aung
Ye Lin Aung

Reputation: 11459

You really should try Crashlytics. Cittercism is quite good too.

Upvotes: 1

Dhruba Bose
Dhruba Bose

Reputation: 446

You can use any crash analytic library . There many library is available in the market. some library is paid. you can use this library.

http://try.crashlytics.com/

Upvotes: 1

John Li
John Li

Reputation: 46

You can try using http://try.crashlytics.com/ which does a good job of providing crash reports .

Alternatively, you can debug & use try-catch around the areas of code that are high risk for crashing and figure out where the problem is from that.

Upvotes: 1

Related Questions