From 31aeba548b3976e4d2779f81e7bb026069b15653 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B0=D1=86=D0=B5=D0=BF=D0=B8=D0=BD?= Date: Mon, 18 Dec 2017 17:35:39 +0300 Subject: [PATCH] [android] Added exception handling during url open --- android/src/com/mapswithme/util/Utils.java | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/android/src/com/mapswithme/util/Utils.java b/android/src/com/mapswithme/util/Utils.java index e9b5c4f2db..721bb9bac2 100644 --- a/android/src/com/mapswithme/util/Utils.java +++ b/android/src/com/mapswithme/util/Utils.java @@ -216,11 +216,18 @@ public class Utils if (TextUtils.isEmpty(url)) return; - final Intent intent = new Intent(Intent.ACTION_VIEW); - if (!url.startsWith("http://") && !url.startsWith("https://")) - url = "http://" + url; - intent.setData(Uri.parse(url)); - activity.startActivity(intent); + try + { + final Intent intent = new Intent(Intent.ACTION_VIEW); + if (!url.startsWith("http://") && !url.startsWith("https://")) + url = "http://" + url; + intent.setData(Uri.parse(url)); + activity.startActivity(intent); + } + catch (ActivityNotFoundException e) + { + CrashlyticsUtils.logException(e); + } } public static void sendSupportMail(@NonNull Activity activity, @NonNull String subject)