https://kotlinlang.org logo
#android-architecture
Title
# android-architecture
u

ursus

10/18/2020, 5:09 AM
Firebase then groups all of these ApiExceptions to one entry in the web UI, im guessing because the line that throws is the same 😔 Then I have to click through the instances of the crash where I now do see various 400 or 500's ... but im 90% sure its not all and just some "smart" agregate How can I "hack" the crashlytics to see these as separate exceptions (rows), so I can see actually all of these?
w

Will Shelor

10/19/2020, 5:49 PM
I did something like this in a previous job! IIRC, we created a custom exception type that overrode the stack trace and made a custom version that “skipped” the first few lines so that crashlytics would not group them. Very hacky, but it did the trick for us.
u

ursus

10/19/2020, 9:06 PM
hmmm sounds smart
2 Views