With a previous app, I was able to get Android app crash capturing working without a problem. It’s still working in the field, capturing a few hundred events a day (it was a horrible app).
With my new app, I absolutely cannot get crash reporting to work. I can use Sentry.capture to get individual messages without an issue, so I know that I haven’t mistyped my DSN or anything. I can see the exception get caught by the sentry handler, I can see the exceptions piling up in the disk cache, but it simply will not push them out. I’ve gone so far as to write my own UncaughtExceptionHandler where I explicitly capture the exception using an EventBuilder (and I KNOW I get to this code), but nothing works, regardless of Android version, build variant, etc.
Any ideas? Is there any sort of debugging or verbose logging I can turn on to try and figure out why this is happening?