Catch SecurityException.

This isn't currently thrown, but future versions
of Android might throw it.
This commit is contained in:
akwizgran
2019-12-11 12:03:37 +00:00
parent d1e21877b3
commit 61324b1cb0

View File

@@ -98,6 +98,8 @@ public class AndroidUtils {
return null;
} catch (InvocationTargetException e) {
return null;
} catch (SecurityException e) {
return null;
}
}