Firebase then groups all of these ApiExceptions to...
# android-architecture
u
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
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
hmmm sounds smart