forked from organicmaps/organicmaps
Fixed unhandled exception appeared in the Google Play console.
This commit is contained in:
parent
9152834be6
commit
1db850c2c4
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue