Loading android/app/src/com/android/bluetooth/le_audio/LeAudioService.java +19 −3 Original line number Diff line number Diff line Loading @@ -1325,6 +1325,12 @@ public class LeAudioService extends ProfileService { final boolean suppressNoisyIntent = hasFallbackDevice || mActiveAudioOutDevice != null; Log.d( TAG, "suppressNoisyIntent: " + suppressNoisyIntent + ", hasFallbackDevice" + hasFallbackDevice); final BluetoothProfileConnectionInfo connectionInfo; if (isAtLeastU()) { connectionInfo = Loading Loading @@ -1376,9 +1382,16 @@ public class LeAudioService extends ProfileService { int currentlyActiveGroupId = getActiveGroupId(); if (DBG) { Log.d(TAG, "setActiveGroupWithDevice = " + groupId + ", currentlyActiveGroupId = " + currentlyActiveGroupId + ", device: " + device); Log.d( TAG, "setActiveGroupWithDevice = " + groupId + ", currentlyActiveGroupId = " + currentlyActiveGroupId + ", device: " + device + ", hasFallbackDevice: " + hasFallbackDevice); } if (groupId == currentlyActiveGroupId) { Loading Loading @@ -1411,6 +1424,9 @@ public class LeAudioService extends ProfileService { */ public boolean removeActiveDevice(boolean hasFallbackDevice) { /* Clear active group */ if (DBG) { Log.d(TAG, "removeActiveDevice, hasFallbackDevice " + hasFallbackDevice); } setActiveGroupWithDevice(null, hasFallbackDevice); return true; } Loading Loading
android/app/src/com/android/bluetooth/le_audio/LeAudioService.java +19 −3 Original line number Diff line number Diff line Loading @@ -1325,6 +1325,12 @@ public class LeAudioService extends ProfileService { final boolean suppressNoisyIntent = hasFallbackDevice || mActiveAudioOutDevice != null; Log.d( TAG, "suppressNoisyIntent: " + suppressNoisyIntent + ", hasFallbackDevice" + hasFallbackDevice); final BluetoothProfileConnectionInfo connectionInfo; if (isAtLeastU()) { connectionInfo = Loading Loading @@ -1376,9 +1382,16 @@ public class LeAudioService extends ProfileService { int currentlyActiveGroupId = getActiveGroupId(); if (DBG) { Log.d(TAG, "setActiveGroupWithDevice = " + groupId + ", currentlyActiveGroupId = " + currentlyActiveGroupId + ", device: " + device); Log.d( TAG, "setActiveGroupWithDevice = " + groupId + ", currentlyActiveGroupId = " + currentlyActiveGroupId + ", device: " + device + ", hasFallbackDevice: " + hasFallbackDevice); } if (groupId == currentlyActiveGroupId) { Loading Loading @@ -1411,6 +1424,9 @@ public class LeAudioService extends ProfileService { */ public boolean removeActiveDevice(boolean hasFallbackDevice) { /* Clear active group */ if (DBG) { Log.d(TAG, "removeActiveDevice, hasFallbackDevice " + hasFallbackDevice); } setActiveGroupWithDevice(null, hasFallbackDevice); return true; } Loading