Loading android/app/src/com/android/bluetooth/btservice/RemoteDevices.java +2 −5 Original line number Diff line number Diff line Loading @@ -514,11 +514,8 @@ final class RemoteDevices { debugLog("Remote Device name is: " + device.mName); break; case AbstractionLayer.BT_PROPERTY_REMOTE_FRIENDLY_NAME: if (device.mAlias != null) { System.arraycopy(val, 0, device.mAlias, 0, val.length); } else { device.mAlias = new String(val); } debugLog("Remote device alias is: " + device.mAlias); break; case AbstractionLayer.BT_PROPERTY_BDADDR: device.mAddress = val; Loading Loading
android/app/src/com/android/bluetooth/btservice/RemoteDevices.java +2 −5 Original line number Diff line number Diff line Loading @@ -514,11 +514,8 @@ final class RemoteDevices { debugLog("Remote Device name is: " + device.mName); break; case AbstractionLayer.BT_PROPERTY_REMOTE_FRIENDLY_NAME: if (device.mAlias != null) { System.arraycopy(val, 0, device.mAlias, 0, val.length); } else { device.mAlias = new String(val); } debugLog("Remote device alias is: " + device.mAlias); break; case AbstractionLayer.BT_PROPERTY_BDADDR: device.mAddress = val; Loading