Loading android/app/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerService.java +7 −7 Original line number Diff line number Diff line Loading @@ -23,7 +23,6 @@ import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothProfile; import android.bluetooth.IBluetoothAvrcpController; import android.content.AttributionSource; import android.content.ComponentName; import android.content.Intent; import android.support.v4.media.MediaBrowserCompat.MediaItem; import android.support.v4.media.session.PlaybackStateCompat; Loading Loading @@ -471,7 +470,7 @@ public class AvrcpControllerService extends ProfileService { private void handlePassthroughRsp(int id, int keyState, byte[] address) { if (DBG) { Log.d(TAG, "passthrough response received as: key: " + id + " state: " + keyState + "address:" + address); + " state: " + keyState + "address:" + Arrays.toString(address)); } } Loading Loading @@ -712,7 +711,8 @@ public class AvrcpControllerService extends ProfileService { int[] attrIds, String[] attrVals) { if (VDBG) { Log.d(TAG, "createFromNativeMediaItem uid: " + uid + " type: " + type + " name: " + name + " attrids: " + attrIds + " attrVals: " + attrVals); + " attrids: " + Arrays.toString(attrIds) + " attrVals: " + Arrays.toString(attrVals)); } BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address); Loading Loading @@ -750,10 +750,10 @@ public class AvrcpControllerService extends ProfileService { AvrcpPlayer createFromNativePlayerItem(byte[] address, int id, String name, byte[] transportFlags, int playStatus, int playerType) { if (VDBG) { Log.d(TAG, "createFromNativePlayerItem name: " + name + " transportFlags " + transportFlags + " play status " + playStatus + " player type " + playerType); Log.d(TAG, "createFromNativePlayerItem name: " + name + " transportFlags " + Arrays.toString(transportFlags) + " play status " + playStatus + " player type " + playerType); } BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address); AvrcpPlayer.Builder apb = new AvrcpPlayer.Builder(); Loading android/app/src/com/android/bluetooth/bass_client/BassClientStateMachine.java +14 −13 Original line number Diff line number Diff line Loading @@ -351,7 +351,8 @@ public class BassClientStateMachine extends StateMachine { Map<ParcelUuid, byte[]> bmsAdvDataMap = record.getServiceData(); if (bmsAdvDataMap != null) { for (Map.Entry<ParcelUuid, byte[]> entry : bmsAdvDataMap.entrySet()) { log("ParcelUUid = " + entry.getKey() + ", Value = " + entry.getValue()); log("ParcelUUid = " + entry.getKey() + ", Value = " + Arrays.toString(entry.getValue())); } } byte[] advData = record.getServiceData(BassConstants.BASIC_AUDIO_UUID); Loading Loading @@ -750,18 +751,18 @@ public class BassClientStateMachine extends StateMachine { numSubGroups, audioSyncState, metadataList); log("Receiver state: " + "\n\tSource ID: " + sourceId + "\n\tSource Address Type: " + (int) sourceAddressType + "\n\tDevice: " + device + "\n\tSource Adv SID: " + sourceAdvSid + "\n\tBroadcast ID: " + broadcastId + "\n\tMetadata Sync State: " + (int) metaDataSyncState + "\n\tEncryption Status: " + (int) encryptionStatus + "\n\tBad Broadcast Code: " + badBroadcastCode + "\n\tNumber Of Subgroups: " + numSubGroups + "\n\tAudio Sync State: " + audioSyncState + "\n\tMetadata: " + metadataList); log("Receiver state: " + "\n\tSource ID: " + sourceId + "\n\tSource Address Type: " + (int) sourceAddressType + "\n\tDevice: " + device + "\n\tSource Adv SID: " + sourceAdvSid + "\n\tBroadcast ID: " + broadcastId + "\n\tMetadata Sync State: " + (int) metaDataSyncState + "\n\tEncryption Status: " + (int) encryptionStatus + "\n\tBad Broadcast Code: " + Arrays.toString(badBroadcastCode) + "\n\tNumber Of Subgroups: " + numSubGroups + "\n\tAudio Sync State: " + audioSyncState + "\n\tMetadata: " + metadataList); } return recvState; } Loading android/app/src/com/android/bluetooth/btservice/activityAttribution/ActivityAttributionNativeInterface.java +3 −1 Original line number Diff line number Diff line Loading @@ -25,6 +25,8 @@ import android.util.Log; import com.android.internal.annotations.GuardedBy; import java.util.Arrays; /** ActivityAttribution Native Interface to/from JNI. */ public class ActivityAttributionNativeInterface { private static final boolean DBG = false; Loading Loading @@ -73,7 +75,7 @@ public class ActivityAttributionNativeInterface { } private void onActivityLogsReady(byte[] logs) { Log.i(TAG, "onActivityLogsReady() BTAA: " + logs); Log.i(TAG, "onActivityLogsReady() BTAA: " + Arrays.toString(logs)); } // Native methods that call into the JNI interface Loading android/app/src/com/android/bluetooth/hfpclient/NativeInterface.java +20 −20 Original line number Diff line number Diff line Loading @@ -340,7 +340,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onAudioStateChanged: address " + address + " event " + event); Log.d(TAG, "onAudioStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -356,7 +356,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onVrStateChanged: address " + address + " event " + event); Log.d(TAG, "onVrStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); Loading @@ -373,7 +373,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onNetworkStateChanged: address " + address + " event " + event); Log.d(TAG, "onNetworkStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); Loading Loading @@ -407,7 +407,7 @@ public class NativeInterface { event.valueInt = signal; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onNetworkSignal: address " + address + " event " + event); Log.d(TAG, "onNetworkSignal: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -422,7 +422,7 @@ public class NativeInterface { event.valueInt = level; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onBatteryLevel: address " + address + " event " + event); Log.d(TAG, "onBatteryLevel: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -437,7 +437,7 @@ public class NativeInterface { event.valueString = name; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCurrentOperator: address " + address + " event " + event); Log.d(TAG, "onCurrentOperator: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -453,7 +453,7 @@ public class NativeInterface { event.valueInt = call; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCall: address " + address + " event " + event); Log.d(TAG, "onCall: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -477,8 +477,8 @@ public class NativeInterface { event.valueInt = callsetup; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallSetup: addr " + address + " device" + event.device); Log.d(TAG, "onCallSetup: address " + address + " event " + event); Log.d(TAG, "onCallSetup: device" + event.device); Log.d(TAG, "onCallSetup: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -502,7 +502,7 @@ public class NativeInterface { event.valueInt = callheld; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallHeld: address " + address + " event " + event); Log.d(TAG, "onCallHeld: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -517,7 +517,7 @@ public class NativeInterface { event.valueInt = respAndHold; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onRespAndHold: address " + address + " event " + event); Log.d(TAG, "onRespAndHold: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -532,7 +532,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onClip: address " + address + " event " + event); Log.d(TAG, "onClip: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -547,7 +547,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallWaiting: address " + address + " event " + event); Log.d(TAG, "onCallWaiting: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -567,7 +567,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCurrentCalls: address " + address + " event " + event); Log.d(TAG, "onCurrentCalls: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -583,7 +583,7 @@ public class NativeInterface { event.valueInt2 = volume; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onVolumeChange: address " + address + " event " + event); Log.d(TAG, "onVolumeChange: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -599,7 +599,7 @@ public class NativeInterface { event.valueInt2 = cme; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCmdResult: address " + address + " event " + event); Log.d(TAG, "onCmdResult: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -615,7 +615,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onSubscriberInfo: address " + address + " event " + event); Log.d(TAG, "onSubscriberInfo: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -631,7 +631,7 @@ public class NativeInterface { event.valueInt = inBand; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onInBandRing: address " + address + " event " + event); Log.d(TAG, "onInBandRing: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -650,7 +650,7 @@ public class NativeInterface { StackEvent event = new StackEvent(StackEvent.EVENT_TYPE_RING_INDICATION); event.device = getDevice(address); if (DBG) { Log.d(TAG, "onRingIndication: address " + address + " event " + event); Log.d(TAG, "onRingIndication: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -666,7 +666,7 @@ public class NativeInterface { event.device = getDevice(address); event.valueString = eventString; if (DBG) { Log.d(TAG, "onUnknownEvent: address " + address + " event " + event); Log.d(TAG, "onUnknownEvent: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading android/app/src/com/android/bluetooth/le_audio/LeAudioTmapGattServer.java +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ public class LeAudioTmapGattServer { BluetoothGattCharacteristic characteristic) { byte[] value = characteristic.getValue(); if (DBG) { Log.d(TAG, "value " + value); Log.d(TAG, "value " + Arrays.toString(value)); } if (value != null) { Log.e(TAG, "value null"); Loading Loading
android/app/src/com/android/bluetooth/avrcpcontroller/AvrcpControllerService.java +7 −7 Original line number Diff line number Diff line Loading @@ -23,7 +23,6 @@ import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothProfile; import android.bluetooth.IBluetoothAvrcpController; import android.content.AttributionSource; import android.content.ComponentName; import android.content.Intent; import android.support.v4.media.MediaBrowserCompat.MediaItem; import android.support.v4.media.session.PlaybackStateCompat; Loading Loading @@ -471,7 +470,7 @@ public class AvrcpControllerService extends ProfileService { private void handlePassthroughRsp(int id, int keyState, byte[] address) { if (DBG) { Log.d(TAG, "passthrough response received as: key: " + id + " state: " + keyState + "address:" + address); + " state: " + keyState + "address:" + Arrays.toString(address)); } } Loading Loading @@ -712,7 +711,8 @@ public class AvrcpControllerService extends ProfileService { int[] attrIds, String[] attrVals) { if (VDBG) { Log.d(TAG, "createFromNativeMediaItem uid: " + uid + " type: " + type + " name: " + name + " attrids: " + attrIds + " attrVals: " + attrVals); + " attrids: " + Arrays.toString(attrIds) + " attrVals: " + Arrays.toString(attrVals)); } BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address); Loading Loading @@ -750,10 +750,10 @@ public class AvrcpControllerService extends ProfileService { AvrcpPlayer createFromNativePlayerItem(byte[] address, int id, String name, byte[] transportFlags, int playStatus, int playerType) { if (VDBG) { Log.d(TAG, "createFromNativePlayerItem name: " + name + " transportFlags " + transportFlags + " play status " + playStatus + " player type " + playerType); Log.d(TAG, "createFromNativePlayerItem name: " + name + " transportFlags " + Arrays.toString(transportFlags) + " play status " + playStatus + " player type " + playerType); } BluetoothDevice device = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(address); AvrcpPlayer.Builder apb = new AvrcpPlayer.Builder(); Loading
android/app/src/com/android/bluetooth/bass_client/BassClientStateMachine.java +14 −13 Original line number Diff line number Diff line Loading @@ -351,7 +351,8 @@ public class BassClientStateMachine extends StateMachine { Map<ParcelUuid, byte[]> bmsAdvDataMap = record.getServiceData(); if (bmsAdvDataMap != null) { for (Map.Entry<ParcelUuid, byte[]> entry : bmsAdvDataMap.entrySet()) { log("ParcelUUid = " + entry.getKey() + ", Value = " + entry.getValue()); log("ParcelUUid = " + entry.getKey() + ", Value = " + Arrays.toString(entry.getValue())); } } byte[] advData = record.getServiceData(BassConstants.BASIC_AUDIO_UUID); Loading Loading @@ -750,18 +751,18 @@ public class BassClientStateMachine extends StateMachine { numSubGroups, audioSyncState, metadataList); log("Receiver state: " + "\n\tSource ID: " + sourceId + "\n\tSource Address Type: " + (int) sourceAddressType + "\n\tDevice: " + device + "\n\tSource Adv SID: " + sourceAdvSid + "\n\tBroadcast ID: " + broadcastId + "\n\tMetadata Sync State: " + (int) metaDataSyncState + "\n\tEncryption Status: " + (int) encryptionStatus + "\n\tBad Broadcast Code: " + badBroadcastCode + "\n\tNumber Of Subgroups: " + numSubGroups + "\n\tAudio Sync State: " + audioSyncState + "\n\tMetadata: " + metadataList); log("Receiver state: " + "\n\tSource ID: " + sourceId + "\n\tSource Address Type: " + (int) sourceAddressType + "\n\tDevice: " + device + "\n\tSource Adv SID: " + sourceAdvSid + "\n\tBroadcast ID: " + broadcastId + "\n\tMetadata Sync State: " + (int) metaDataSyncState + "\n\tEncryption Status: " + (int) encryptionStatus + "\n\tBad Broadcast Code: " + Arrays.toString(badBroadcastCode) + "\n\tNumber Of Subgroups: " + numSubGroups + "\n\tAudio Sync State: " + audioSyncState + "\n\tMetadata: " + metadataList); } return recvState; } Loading
android/app/src/com/android/bluetooth/btservice/activityAttribution/ActivityAttributionNativeInterface.java +3 −1 Original line number Diff line number Diff line Loading @@ -25,6 +25,8 @@ import android.util.Log; import com.android.internal.annotations.GuardedBy; import java.util.Arrays; /** ActivityAttribution Native Interface to/from JNI. */ public class ActivityAttributionNativeInterface { private static final boolean DBG = false; Loading Loading @@ -73,7 +75,7 @@ public class ActivityAttributionNativeInterface { } private void onActivityLogsReady(byte[] logs) { Log.i(TAG, "onActivityLogsReady() BTAA: " + logs); Log.i(TAG, "onActivityLogsReady() BTAA: " + Arrays.toString(logs)); } // Native methods that call into the JNI interface Loading
android/app/src/com/android/bluetooth/hfpclient/NativeInterface.java +20 −20 Original line number Diff line number Diff line Loading @@ -340,7 +340,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onAudioStateChanged: address " + address + " event " + event); Log.d(TAG, "onAudioStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -356,7 +356,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onVrStateChanged: address " + address + " event " + event); Log.d(TAG, "onVrStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); Loading @@ -373,7 +373,7 @@ public class NativeInterface { event.valueInt = state; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onNetworkStateChanged: address " + address + " event " + event); Log.d(TAG, "onNetworkStateChanged: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); Loading Loading @@ -407,7 +407,7 @@ public class NativeInterface { event.valueInt = signal; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onNetworkSignal: address " + address + " event " + event); Log.d(TAG, "onNetworkSignal: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -422,7 +422,7 @@ public class NativeInterface { event.valueInt = level; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onBatteryLevel: address " + address + " event " + event); Log.d(TAG, "onBatteryLevel: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -437,7 +437,7 @@ public class NativeInterface { event.valueString = name; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCurrentOperator: address " + address + " event " + event); Log.d(TAG, "onCurrentOperator: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -453,7 +453,7 @@ public class NativeInterface { event.valueInt = call; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCall: address " + address + " event " + event); Log.d(TAG, "onCall: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -477,8 +477,8 @@ public class NativeInterface { event.valueInt = callsetup; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallSetup: addr " + address + " device" + event.device); Log.d(TAG, "onCallSetup: address " + address + " event " + event); Log.d(TAG, "onCallSetup: device" + event.device); Log.d(TAG, "onCallSetup: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -502,7 +502,7 @@ public class NativeInterface { event.valueInt = callheld; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallHeld: address " + address + " event " + event); Log.d(TAG, "onCallHeld: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -517,7 +517,7 @@ public class NativeInterface { event.valueInt = respAndHold; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onRespAndHold: address " + address + " event " + event); Log.d(TAG, "onRespAndHold: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -532,7 +532,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onClip: address " + address + " event " + event); Log.d(TAG, "onClip: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -547,7 +547,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCallWaiting: address " + address + " event " + event); Log.d(TAG, "onCallWaiting: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -567,7 +567,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCurrentCalls: address " + address + " event " + event); Log.d(TAG, "onCurrentCalls: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -583,7 +583,7 @@ public class NativeInterface { event.valueInt2 = volume; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onVolumeChange: address " + address + " event " + event); Log.d(TAG, "onVolumeChange: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -599,7 +599,7 @@ public class NativeInterface { event.valueInt2 = cme; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onCmdResult: address " + address + " event " + event); Log.d(TAG, "onCmdResult: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -615,7 +615,7 @@ public class NativeInterface { event.valueString = number; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onSubscriberInfo: address " + address + " event " + event); Log.d(TAG, "onSubscriberInfo: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -631,7 +631,7 @@ public class NativeInterface { event.valueInt = inBand; event.device = getDevice(address); if (DBG) { Log.d(TAG, "onInBandRing: address " + address + " event " + event); Log.d(TAG, "onInBandRing: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -650,7 +650,7 @@ public class NativeInterface { StackEvent event = new StackEvent(StackEvent.EVENT_TYPE_RING_INDICATION); event.device = getDevice(address); if (DBG) { Log.d(TAG, "onRingIndication: address " + address + " event " + event); Log.d(TAG, "onRingIndication: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading @@ -666,7 +666,7 @@ public class NativeInterface { event.device = getDevice(address); event.valueString = eventString; if (DBG) { Log.d(TAG, "onUnknownEvent: address " + address + " event " + event); Log.d(TAG, "onUnknownEvent: event " + event); } HeadsetClientService service = HeadsetClientService.getHeadsetClientService(); if (service != null) { Loading
android/app/src/com/android/bluetooth/le_audio/LeAudioTmapGattServer.java +1 −1 Original line number Diff line number Diff line Loading @@ -123,7 +123,7 @@ public class LeAudioTmapGattServer { BluetoothGattCharacteristic characteristic) { byte[] value = characteristic.getValue(); if (DBG) { Log.d(TAG, "value " + value); Log.d(TAG, "value " + Arrays.toString(value)); } if (value != null) { Log.e(TAG, "value null"); Loading