Esempio n. 1
0
 private void HandleExceptionNotification(ExceptionAnalyticsMessage msg)
 {
     try
     {
         GoogleAnalytics?.TrackException(msg.Message, msg.IsFatal);
     }
     catch {}
 }
Esempio n. 2
0
 private void HandleExceptionNotification(ExceptionAnalyticsMessage msg)
 {
     try
     {
         if (MobileCenter == null)
         {
             Mvx.CallbackWhenRegistered <IMobileCenter>(() => MobileCenter.TrackException(msg.Message, msg.StackTrace, msg.Data));
         }
         else
         {
             MobileCenter.TrackException(msg.Message, msg.StackTrace, msg.Data);
         }
     }
     catch {}
 }
 private void HandleExceptionNotification(ExceptionAnalyticsMessage msg)
 {
     AppsFlyer.TrackException(msg.Message, msg.IsFatal);
 }