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

Commit 23f5a11d authored by xiaowang's avatar xiaowang Committed by Jack He
Browse files

BT LE broadcast assistant implementation



BT LE broadcast assistant implementation

Test: compile
Tag: #feature
sponsor: siyuanh@

Change-Id: Ia183608f3551319f79f8e2aa933445346c42c028
Signed-off-by: default avatarMyles Watson <mylesgw@google.com>
parent 347bd0b0
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -465,6 +465,15 @@
                <action android:name="android.bluetooth.IBluetoothLeCallControl" />
            </intent-filter>
        </service>
        <service
            android:process="@string/process"
            android:name = ".bass_client.BassClientService"
            android:enabled="@bool/profile_supported_bass_client"
            android:exported = "true">
            <intent-filter>
                <action android:name="android.bluetooth.IBluetoothLeBroadcastAssistant" />
            </intent-filter>
        </service>
        <!-- Authenticator for PBAP account. -->
        <service android:process="@string/process"
             android:name=".pbapclient.AuthenticationService"
+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@
    <bool name="profile_supported_csip_set_coordinator">true</bool>
    <bool name="profile_supported_le_call_control">true</bool>
    <bool name="profile_supported_hap_client">true</bool>
    <bool name="profile_supported_bass_client">true</bool>

    <!-- If true, we will require location to be enabled on the device to
         fire Bluetooth LE scan result callbacks in addition to having one
+520 −0

File added.

Preview size limit exceeded, changes collapsed.

+1261 −0

File added.

Preview size limit exceeded, changes collapsed.

+1820 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading