Loading android/app/res/values/config.xml +1 −0 Original line number Diff line number Diff line Loading @@ -33,6 +33,7 @@ <bool name="profile_supported_mapmce">false</bool> <bool name="profile_supported_hid_device">true</bool> <bool name="profile_supported_le_audio">true</bool> <bool name="profile_supported_le_audio_broadcast">false</bool> <bool name="profile_supported_vc">true</bool> <bool name="profile_supported_mcp_server">true</bool> <bool name="profile_supported_csip_set_coordinator">true</bool> Loading android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −2 Original line number Diff line number Diff line Loading @@ -4526,8 +4526,8 @@ public class AdapterService extends Service { * @return true, if the LE audio broadcast source is supported */ public boolean isLeAudioBroadcastSourceSupported() { //TODO: check the profile support status as well after we have the implementation return mAdapterProperties.isLePeriodicAdvertisingSupported() return getResources().getBoolean(R.bool.profile_supported_le_audio_broadcast) && mAdapterProperties.isLePeriodicAdvertisingSupported() && mAdapterProperties.isLeExtendedAdvertisingSupported() && mAdapterProperties.isLeIsochronousBroadcasterSupported(); } Loading Loading
android/app/res/values/config.xml +1 −0 Original line number Diff line number Diff line Loading @@ -33,6 +33,7 @@ <bool name="profile_supported_mapmce">false</bool> <bool name="profile_supported_hid_device">true</bool> <bool name="profile_supported_le_audio">true</bool> <bool name="profile_supported_le_audio_broadcast">false</bool> <bool name="profile_supported_vc">true</bool> <bool name="profile_supported_mcp_server">true</bool> <bool name="profile_supported_csip_set_coordinator">true</bool> Loading
android/app/src/com/android/bluetooth/btservice/AdapterService.java +2 −2 Original line number Diff line number Diff line Loading @@ -4526,8 +4526,8 @@ public class AdapterService extends Service { * @return true, if the LE audio broadcast source is supported */ public boolean isLeAudioBroadcastSourceSupported() { //TODO: check the profile support status as well after we have the implementation return mAdapterProperties.isLePeriodicAdvertisingSupported() return getResources().getBoolean(R.bool.profile_supported_le_audio_broadcast) && mAdapterProperties.isLePeriodicAdvertisingSupported() && mAdapterProperties.isLeExtendedAdvertisingSupported() && mAdapterProperties.isLeIsochronousBroadcasterSupported(); } Loading