Does anyone have a way of highlighting exceptions on iOS for methods that weren’t tagged with
@Throws
?
Recently got burned because we forgot to add that annotation to a method and the crashes weren’t even getting sent up to Crashlytics 😅
b
basher
04/15/2021, 10:20 PM
Why weren’t they making it to crashlytics?
a
ankushg
04/15/2021, 11:06 PM
Honestly not sure —I assumed it had something to do with this blurb: “Other Kotlin exceptions reaching Swift/Objective-C are considered unhandled and cause program termination” (from here)
Should they have been showing up in crashlytics anyway?
b
basher
04/15/2021, 11:09 PM
Yeah they should. One caveat is that crashes in workers fail silently. You have to have a handler somewhere to force crash the app (for workers)