Loading android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −2 Original line number Diff line number Diff line Loading @@ -758,7 +758,7 @@ public class AdapterService extends Service { HashSet<Class> nonSupportedProfiles = new HashSet<>(); if (!isLeConnectedIsochronousStreamCentralSupported()) { nonSupportedProfiles.addAll(Config.geLeAudioUnicastProfiles()); nonSupportedProfiles.addAll(Config.getLeAudioUnicastProfiles()); } if (!isLeAudioBroadcastAssistantSupported()) { Loading Loading @@ -3517,7 +3517,7 @@ public class AdapterService extends Service { HashSet<Class> supportedProfileServices = new HashSet<Class>(Arrays.asList(Config.getSupportedProfiles())); HashSet<Class> leAudioUnicastProfiles = Config.geLeAudioUnicastProfiles(); HashSet<Class> leAudioUnicastProfiles = Config.getLeAudioUnicastProfiles(); if (supportedProfileServices.containsAll(leAudioUnicastProfiles)) { return BluetoothStatusCodes.FEATURE_SUPPORTED; Loading android/app/src/com/android/bluetooth/btservice/Config.java +1 −1 Original line number Diff line number Diff line Loading @@ -239,7 +239,7 @@ public class Config { sSupportedMask |= (1 << supportedProfile); } static HashSet<Class> geLeAudioUnicastProfiles() { static HashSet<Class> getLeAudioUnicastProfiles() { return mLeAudioUnicastProfiles; } Loading Loading
android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −2 Original line number Diff line number Diff line Loading @@ -758,7 +758,7 @@ public class AdapterService extends Service { HashSet<Class> nonSupportedProfiles = new HashSet<>(); if (!isLeConnectedIsochronousStreamCentralSupported()) { nonSupportedProfiles.addAll(Config.geLeAudioUnicastProfiles()); nonSupportedProfiles.addAll(Config.getLeAudioUnicastProfiles()); } if (!isLeAudioBroadcastAssistantSupported()) { Loading Loading @@ -3517,7 +3517,7 @@ public class AdapterService extends Service { HashSet<Class> supportedProfileServices = new HashSet<Class>(Arrays.asList(Config.getSupportedProfiles())); HashSet<Class> leAudioUnicastProfiles = Config.geLeAudioUnicastProfiles(); HashSet<Class> leAudioUnicastProfiles = Config.getLeAudioUnicastProfiles(); if (supportedProfileServices.containsAll(leAudioUnicastProfiles)) { return BluetoothStatusCodes.FEATURE_SUPPORTED; Loading
android/app/src/com/android/bluetooth/btservice/Config.java +1 −1 Original line number Diff line number Diff line Loading @@ -239,7 +239,7 @@ public class Config { sSupportedMask |= (1 << supportedProfile); } static HashSet<Class> geLeAudioUnicastProfiles() { static HashSet<Class> getLeAudioUnicastProfiles() { return mLeAudioUnicastProfiles; } Loading