Shrenik
Shrenik

Reputation: 399

Exit on application crash

when ever any application crash come I want to exit from the app ?
How to achieve same. does Android manifest have any provision for same.

Upvotes: 1

Views: 1800

Answers (2)

PanosJee
PanosJee

Reputation: 3866

You could also use ACRA or a service like BugSense that solve this problem.

Upvotes: 1

RoflcoptrException
RoflcoptrException

Reputation: 52229

I would recommend to register a global UncaughtExceptionHandler. This catches all the exceptions that are not handled. Then you can do there what you want. For example close the app, inform the user and send a log to yourself.

Upvotes: 4

Related Questions