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

Commit b60ba9a1 authored by Stanley Tng's avatar Stanley Tng Committed by android-build-merger
Browse files

Merge "Disable Hearing Aid Profile for all platforms except Pixels"

am: 3f3cf588

Change-Id: I89ccb8308b7472e782e924140ce4eab3a09d7dc0
parents c9b723b2 3f3cf588
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ import android.content.Context;
import android.os.ParcelUuid;
import android.util.Log;

import java.util.List;
import java.util.Set;

/**
@@ -248,4 +249,8 @@ public class LocalBluetoothAdapter {
    public int getMaxConnectedAudioDevices() {
        return mAdapter.getMaxConnectedAudioDevices();
    }

    public List<Integer> getSupportedProfiles() {
        return mAdapter.getSupportedProfiles();
    }
}
+8 −3
Original line number Diff line number Diff line
@@ -38,6 +38,7 @@ import com.android.internal.R;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
@@ -150,9 +151,13 @@ public class LocalBluetoothProfileManager {
        addProfile(mPbapProfile, PbapServerProfile.NAME,
             BluetoothPbap.ACTION_CONNECTION_STATE_CHANGED);

        mHearingAidProfile = new HearingAidProfile(mContext, mLocalAdapter, mDeviceManager, this);
        List<Integer> supportedList = mLocalAdapter.getSupportedProfiles();
        if (supportedList.contains(BluetoothProfile.HEARING_AID)) {
            mHearingAidProfile = new HearingAidProfile(mContext, mLocalAdapter, mDeviceManager,
                                                       this);
            addProfile(mHearingAidProfile, HearingAidProfile.NAME,
                       BluetoothHearingAid.ACTION_CONNECTION_STATE_CHANGED);
        }
        if (DEBUG) Log.d(TAG, "LocalBluetoothProfileManager construction complete");
    }