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

Commit b9a2106d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Change storage metadata type to byte array" into qt-dev

parents de85957e 24de366b
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);
}