API Changes needed for Blueooth apex to build
Bug: 216476895 Test: Compile Tag: #refactor Merged-In: Ia7741309719e1f46c8c18c81b65c8862bca814e1 Change-Id: Ia7741309719e1f46c8c18c81b65c8862bca814e1
This commit is contained in:
parent
4ff7b1d723
commit
f185c9bcd9
@ -1569,7 +1569,7 @@ public class CompanionDeviceManagerService extends SystemService implements Bind
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onDeviceDisconnected(BluetoothDevice device, @DisconnectReason int reason) {
|
||||
public void onDeviceDisconnected(BluetoothDevice device, int reason) {
|
||||
Slog.d(LOG_TAG, device.getAddress() + " disconnected w/ reason: (" + reason + ") "
|
||||
+ BluetoothAdapter.BluetoothConnectionCallback.disconnectReasonText(reason));
|
||||
CompanionDeviceManagerService.this.onDeviceDisconnected(device.getAddress());
|
||||
|
@ -490,9 +490,7 @@ public class BtHelper {
|
||||
return;
|
||||
}
|
||||
final BluetoothDevice btDevice = deviceList.get(0);
|
||||
final @BluetoothProfile.BtProfileState int state =
|
||||
proxy.getConnectionState(btDevice);
|
||||
if (state == BluetoothProfile.STATE_CONNECTED) {
|
||||
if (proxy.getConnectionState(btDevice) == BluetoothProfile.STATE_CONNECTED) {
|
||||
mDeviceBroker.queueOnBluetoothActiveDeviceChanged(
|
||||
new AudioDeviceBroker.BtDeviceChangedData(btDevice, null,
|
||||
new BluetoothProfileConnectionInfo(profile),
|
||||
|
Loading…
x
Reference in New Issue
Block a user