Reputation: 1074
I'm using Firebase Crash Reporting with Xamarin.Forms. I successfully implemented Firebase Crash on my Android app, but most exceptions end up grouped based on android.runtime.JavaProxyThrowable
.
How can I fix this?
Upvotes: 0
Views: 416
Reputation: 317392
Firebase Crash Reporting does not support apps that are not built using native code and tools. It doesn't understand frameworks like Xamarin, so you can expect that it may not be very useful in those environments. On Android, it only really knows how to deal with native Java stack traces from native code running the app.
Upvotes: 3