From 2d47039c1e2d3f390a0c03b0a6245ed0cd15a18b Mon Sep 17 00:00:00 2001 From: Dmitry Donskoy Date: Wed, 26 Sep 2018 12:46:23 +0300 Subject: [PATCH] [android] Added exception to crashlytics log --- android/src/com/mapswithme/maps/ExternalLibrariesMediator.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/src/com/mapswithme/maps/ExternalLibrariesMediator.java b/android/src/com/mapswithme/maps/ExternalLibrariesMediator.java index c9d977fe26..081a7e33bd 100644 --- a/android/src/com/mapswithme/maps/ExternalLibrariesMediator.java +++ b/android/src/com/mapswithme/maps/ExternalLibrariesMediator.java @@ -16,6 +16,7 @@ import com.google.android.gms.common.GooglePlayServicesRepairableException; import com.mapswithme.maps.analytics.DefaultEventLogger; import com.mapswithme.maps.analytics.EventLogger; import com.mapswithme.maps.analytics.EventLoggerAggregator; +import com.mapswithme.util.CrashlyticsUtils; import com.mapswithme.util.Utils; import com.mapswithme.util.log.Logger; import com.mapswithme.util.log.LoggerFactory; @@ -164,6 +165,7 @@ public class ExternalLibrariesMediator catch (GooglePlayServicesNotAvailableException | IOException | GooglePlayServicesRepairableException e) { LOGGER.e(TAG, e.getMessage()); + CrashlyticsUtils.logException(e); return false; } }