I have a big Android application and I have a requirement to log all types of errors that could happen in my Application including "Out of memory"
etc.
Is it possible to accomplish?
I can use
try {
} catch(throwable t) {
}
but adding a whole code to try/catch
sounds bad. And how can I catch an errors like "out of memory"?