Fixed unhandled exception appeared in the Google Play console.

This commit is contained in:
Alex Zolotarev 2015-03-31 11:16:53 +03:00
parent 9152834be6
commit 1db850c2c4

View file

@ -266,6 +266,11 @@ public class SystemInfo {
}
public static boolean hasPermission(final String permission, final Context context) {
return PackageManager.PERMISSION_GRANTED == context.checkCallingOrSelfPermission(permission);
try {
return PackageManager.PERMISSION_GRANTED == context.checkCallingOrSelfPermission(permission);
} catch (Exception ex) {
handleException(ex);
return false;
}
}
}