Reputation: 4595
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
Reputation: 11459
You really should try Crashlytics. Cittercism is quite good too.
Upvotes: 1
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.
Upvotes: 1
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