mirror of https://github.com/encounter/SDL.git
- Added exception handler for the new SecurityException in USBDevice getSerialNumber
This commit is contained in:
parent
ae9ff11bae
commit
eea450bc99
|
@ -53,7 +53,13 @@ class HIDDeviceUSB implements HIDDevice {
|
||||||
public String getSerialNumber() {
|
public String getSerialNumber() {
|
||||||
String result = null;
|
String result = null;
|
||||||
if (Build.VERSION.SDK_INT >= 21) {
|
if (Build.VERSION.SDK_INT >= 21) {
|
||||||
result = mDevice.getSerialNumber();
|
try {
|
||||||
|
result = mDevice.getSerialNumber();
|
||||||
|
}
|
||||||
|
catch (SecurityException exception) {
|
||||||
|
Log.w(TAG, "App permissions mean we cannot get serial number for device " + getDeviceName() + " message: " + exception.getMessage());
|
||||||
|
result = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
result = "";
|
result = "";
|
||||||
|
|
Loading…
Reference in New Issue