xamarin / GoogleApisForiOSComponents

MIT License
225 stars 161 forks source link

[iOS Crashlytics 4.6.2] Non-handled exceptions on background threads are reported as crashes #464

Open tmssalg opened 3 years ago

tmssalg commented 3 years ago

Non-fatal exceptions are being reported as crashes on Firebase Crashlytics. This happens when non-handled exceptions occur on a background thread. A simple test can be done to reproduce this:

            Task.Run(() => {
                string test = null;

                var test2 = test.Length;
            });

I am using the latest Xamarin.Firebase.iOS.Crashlytics version 4.6.2.

Is it possible to prioritise this fix?

Thanks, Tiago Salgueiro