Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1b39bc9 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4635315 from a69df717ce67af3c6a5bf6e015b16036315d65ac to pi-release

Change-Id: If5b55979916f5aa039c0256d890a2b0ca7b19d06
parents 965bc2a2 27128c93
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -541,13 +541,14 @@ public final class BluetoothAdapter {
            "android.bluetooth.adapter.action.BLE_ACL_DISCONNECTED";

    /** The profile is in disconnected state */
    public static final int STATE_DISCONNECTED = 0;
    public static final int STATE_DISCONNECTED = BluetoothProtoEnums.CONNECTION_STATE_DISCONNECTED;
    /** The profile is in connecting state */
    public static final int STATE_CONNECTING = 1;
    public static final int STATE_CONNECTING = BluetoothProtoEnums.CONNECTION_STATE_CONNECTING;
    /** The profile is in connected state */
    public static final int STATE_CONNECTED = 2;
    public static final int STATE_CONNECTED = BluetoothProtoEnums.CONNECTION_STATE_CONNECTED;
    /** The profile is in disconnecting state */
    public static final int STATE_DISCONNECTING = 3;
    public static final int STATE_DISCONNECTING =
            BluetoothProtoEnums.CONNECTION_STATE_DISCONNECTING;

    /** @hide */
    public static final String BLUETOOTH_MANAGER_SERVICE = "bluetooth_manager";