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

Commit b195779a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Change storage metadata type to byte array"

parents e1e8e2b9 5a54a076
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -126,8 +126,8 @@ interface IBluetooth
    // For Metadata
    boolean registerMetadataListener(in IBluetoothMetadataListener listener, in BluetoothDevice device);
    boolean unregisterMetadataListener(in BluetoothDevice device);
    boolean setMetadata(in BluetoothDevice device, in int key, in String value);
    String getMetadata(in BluetoothDevice device, in int key);
    boolean setMetadata(in BluetoothDevice device, in int key, in byte[] value);
    byte[] getMetadata(in BluetoothDevice device, in int key);


    /**
+1 −1
Original line number Diff line number Diff line
@@ -24,5 +24,5 @@ import android.bluetooth.BluetoothDevice;
 * @hide
 */
oneway interface IBluetoothMetadataListener {
    void onMetadataChanged(in BluetoothDevice devices, in int key, in String value);
    void onMetadataChanged(in BluetoothDevice devices, in int key, in byte[] value);
}