If an Exception
occurs in an AsyncTask
and is not caught, will it crash the whole app? If it will not crash the app, why is that?
Is there any difference between an uncaught exception in the doInBackground()
method and other methods such as onPostExecute()
, onPreExecute()
, etc?