[android] Added exception handling during url open

This commit is contained in:
Александр Зацепин 2017-12-18 17:35:39 +03:00 committed by Roman Kuznetsov
parent bfae54a1ec
commit 31aeba548b

View file

@ -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)