You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
I am throwing a null reference exception using this code.
ThreadPool.QueueUserWorkItem(new WaitCallback(ignored =>
{
throw new System.NullReferenceException();
}));
But Crashlytics fails to log and send it to the Firebase console. Whenever I use Crashlytics.Instance.Crash() though, it logs and successfully sends the crash to the Firebase console. So maybe Crashlytics only logs Java exceptions?
I've also tried using this code as @Redth recommended in that issue but to no avail.
AppDomain.CurrentDomain.UnhandledException += (object sender, UnhandledExceptionEventArgs e) =>
Crashlytics.LogException(MonoExceptionHelper.Create(e.ExceptionObject as Exception));