Merge "API Changes needed for Blueooth apex to build" am: a83857b9e2

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1982327

Change-Id: Ia8e652307958b993b8a73e32f75a10ad385da6fe
This commit is contained in:
Treehugger Robot
2022-02-12 12:29:30 +00:00
committed by Automerger Merge Worker
2 changed files with 2 additions and 4 deletions

View File

@@ -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());

View File

@@ -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),