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

Commit 4a5c1286 authored by William Escande's avatar William Escande
Browse files

Resolve bluetooth hidden API usages

Bug: 143245666
Test: build
Change-Id: Idadf84873c88155382c48bb9108cf28d88aaef0a
parent b2ac9d5c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -435,7 +435,7 @@ public class BluetoothPairingController implements OnCheckedChangeListener,
     */
    public void onCancel() {
        Log.d(TAG, "Pairing dialog canceled");
        mDevice.cancelPairing();
        mDevice.cancelBondProcess();
    }

    /**
+2 −2
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ public final class BluetoothPairingService extends Service {
            } else if (action.equals(ACTION_DISMISS_PAIRING)) {
                Log.d(TAG, "Notification cancel " + " (" +
                        mDevice.getName() + ")");
                mDevice.cancelPairing();
                mDevice.cancelBondProcess();
            } else {
                int bondState = intent.getIntExtra(BluetoothDevice.EXTRA_BOND_STATE,
                        BluetoothDevice.ERROR);
@@ -144,7 +144,7 @@ public final class BluetoothPairingService extends Service {
            createPairingNotification(intent);
        } else if (TextUtils.equals(action, ACTION_DISMISS_PAIRING)) {
            Log.d(TAG, "Notification cancel " + " (" + mDevice.getName() + ")");
            mDevice.cancelPairing();
            mDevice.cancelBondProcess();
            mNm.cancel(NOTIFICATION_ID);
            stopSelf();
        } else if (TextUtils.equals(action, ACTION_PAIRING_DIALOG)) {
+1 −1
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ public class BluetoothPairingServiceTest {

        mBluetoothPairingService.onStartCommand(intent, /* flags */ 0, /* startId */ 0);

        verify(mDevice).cancelPairing();
        verify(mDevice).cancelBondProcess();
        verify(mNm).cancel(mBluetoothPairingService.NOTIFICATION_ID);
    }