It seems like WorkManager's `CoroutineWorker` uses...
# android
d
It seems like WorkManager's
CoroutineWorker
uses
launch
to run
doWork
, does that mean that a crash can't be caught with a regular try/catch? Does a
CoroutineExceptionHandler
need to be installed for that? If so, where?
a
You can use a regular try/catch in doWork itself
d
Ok, thanks! I guess I still have to hunt that crash since I have a try/catch there... 🤔