Hi guys is this possible to send a handled exception to HockeyApp SDK using Xamarin android ?
I am getting unhandled exceptions in HockeyApp SDK .
Can any one suggest some way to this problem.
the below code is one of my experiment. This is also not working
try
{
MetricsManager.Register(Application.Context, Application, "aca46d1941bd4891bb1ce2ab770e28a8");
MetricsManager.EnableUserMetrics();
int a = 10;
int b = a / 0;
}
catch (Exception ex)
{
MetricsManager.TrackEvent(ex.ToString());
}