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

Commit 8caf79c1 authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

leaudio: Expose group node operation to application

Bug: 150670922
Tag: #feature
Sponsor: jpawlowski@
Test: compile

Change-Id: I9e21658f5e2dadf80605d4ac23dc99f6f89e4dee
parent 608c15fa
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -62,4 +62,8 @@ interface IBluetoothLeAudio {
    int getGroupId(in BluetoothDevice device, in AttributionSource attributionSource);
    @JavaPassthrough(annotation="@android.annotation.RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)")
    void setVolume(int volume, in AttributionSource attributionSource);
    @JavaPassthrough(annotation="@android.annotation.RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)")
    boolean groupAddNode(int group_id, in BluetoothDevice device, in AttributionSource attributionSource);
    @JavaPassthrough(annotation="@android.annotation.RequiresPermission(android.Manifest.permission.BLUETOOTH_CONNECT)")
    boolean groupRemoveNode(int group_id, in BluetoothDevice device, in AttributionSource attributionSource);
}