try/catch on autofill service detection

This commit is contained in:
Kyle Spearrin 2019-06-05 08:24:47 -04:00
parent e59ac5d65d
commit 3b7078e565
1 changed files with 21 additions and 7 deletions

View File

@ -323,11 +323,18 @@ namespace Bit.Droid.Services
{
return false;
}
try
{
var activity = (MainActivity)CrossCurrentActivity.Current.Activity;
var type = Java.Lang.Class.FromType(typeof(AutofillManager));
var manager = activity.GetSystemService(type) as AutofillManager;
return manager.IsAutofillSupported;
}
catch
{
return false;
}
}
public int SystemMajorVersion()
{
@ -514,10 +521,17 @@ namespace Bit.Droid.Services
{
return false;
}
try
{
var activity = (MainActivity)CrossCurrentActivity.Current.Activity;
var afm = (AutofillManager)activity.GetSystemService(Java.Lang.Class.FromType(typeof(AutofillManager)));
return afm.IsEnabled && afm.HasEnabledAutofillServices;
}
catch
{
return false;
}
}
public void OpenAccessibilitySettings()
{