Arpad Borsos
Arpad Borsos
Sure, though I doubt there is any actionable thing we can do about code size right now. Unless we drop our custom fork of `libunwindstack` and rely on the system...
Leaving this here as breadcrumbs: https://android.googlesource.com/platform/system/unwinding/+/refs/heads/master/libunwindstack/AndroidVersions.md > libunwindstack was first introduced in API level 28. Also, https://android.googlesource.com/platform/bionic/+/master/docs/status.md > New libc functions in T (API level 33): > backtrace, backtrace_symbols, backtrace_symbols_fd...
Another thing worth mentioning: > New libc functions in L (API level 21): > dl_iterate_phdr. That would make it possible to get rid of our custom module finder, which has...
I’m not quite sure how WinUI 3 works under the hood, but the guide defaults to C#, which makes me think that maybe WinUI 3 is actually managed code, and...
@bruno-garcia the UWP limitation does not explain why crashes are being handled when crashing directly after setup. I rather suspect that the UI code installs its own exception filter, overriding...
According to the docs, you can only set it, and it returns the previously set handler: https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-setunhandledexceptionfilter Also according to the docs, the exception could also have been caught by...
I think this might be the same problem as described in https://github.com/getsentry/sentry-native/issues/706. It might be that some graphics drivers are overriding the UnhandlerExceptionHandler. The linked issue has a possible workaround....
Interesting. Do you have proxies configured? Those are not being passed down to crashpad at the moment
I think this is rather something that should be documented on the libc++ side, as I bet this affects all c++ projects essentially.
@marandaneto you said once that all the libs are pre-built on android, right? so as part of the buildstep, we would have to upload the symbols to some central location....