Loading android/app/AndroidManifest.xml +1 −0 Original line number Diff line number Diff line Loading @@ -428,6 +428,7 @@ <service android:process="@string/process" android:name = ".le_audio.LeAudioService" android:enabled="@bool/profile_supported_le_audio" android:exported = "true"> <intent-filter> <action android:name="android.bluetooth.IBluetoothLeAudio" /> Loading android/app/res/values/config.xml +2 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,8 @@ <bool name="profile_supported_pbapclient">false</bool> <bool name="profile_supported_mapmce">false</bool> <bool name="profile_supported_hid_device">true</bool> <bool name="profile_supported_vc">false</bool> <bool name="profile_supported_le_audio">true</bool> <bool name="profile_supported_vc">true</bool> <bool name="profile_supported_mcp_server">true</bool> <!-- If true, we will require location to be enabled on the device to Loading android/app/src/com/android/bluetooth/btservice/Config.java +3 −0 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ import com.android.bluetooth.hfp.HeadsetService; import com.android.bluetooth.hfpclient.HeadsetClientService; import com.android.bluetooth.hid.HidDeviceService; import com.android.bluetooth.hid.HidHostService; import com.android.bluetooth.le_audio.LeAudioService; import com.android.bluetooth.map.BluetoothMapService; import com.android.bluetooth.mapclient.MapClientService; import com.android.bluetooth.mcp.McpService; Loading Loading @@ -106,6 +107,8 @@ public class Config { (1 << BluetoothProfile.OPP)), new ProfileConfig(BluetoothPbapService.class, R.bool.profile_supported_pbap, (1 << BluetoothProfile.PBAP)), new ProfileConfig(LeAudioService.class, R.bool.profile_supported_le_audio, (1 << BluetoothProfile.LE_AUDIO)), new ProfileConfig(VolumeControlService.class, R.bool.profile_supported_vc, (1 << BluetoothProfile.VOLUME_CONTROL)), new ProfileConfig(McpService.class, R.bool.profile_supported_mcp_server, Loading Loading
android/app/AndroidManifest.xml +1 −0 Original line number Diff line number Diff line Loading @@ -428,6 +428,7 @@ <service android:process="@string/process" android:name = ".le_audio.LeAudioService" android:enabled="@bool/profile_supported_le_audio" android:exported = "true"> <intent-filter> <action android:name="android.bluetooth.IBluetoothLeAudio" /> Loading
android/app/res/values/config.xml +2 −1 Original line number Diff line number Diff line Loading @@ -32,7 +32,8 @@ <bool name="profile_supported_pbapclient">false</bool> <bool name="profile_supported_mapmce">false</bool> <bool name="profile_supported_hid_device">true</bool> <bool name="profile_supported_vc">false</bool> <bool name="profile_supported_le_audio">true</bool> <bool name="profile_supported_vc">true</bool> <bool name="profile_supported_mcp_server">true</bool> <!-- If true, we will require location to be enabled on the device to Loading
android/app/src/com/android/bluetooth/btservice/Config.java +3 −0 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ import com.android.bluetooth.hfp.HeadsetService; import com.android.bluetooth.hfpclient.HeadsetClientService; import com.android.bluetooth.hid.HidDeviceService; import com.android.bluetooth.hid.HidHostService; import com.android.bluetooth.le_audio.LeAudioService; import com.android.bluetooth.map.BluetoothMapService; import com.android.bluetooth.mapclient.MapClientService; import com.android.bluetooth.mcp.McpService; Loading Loading @@ -106,6 +107,8 @@ public class Config { (1 << BluetoothProfile.OPP)), new ProfileConfig(BluetoothPbapService.class, R.bool.profile_supported_pbap, (1 << BluetoothProfile.PBAP)), new ProfileConfig(LeAudioService.class, R.bool.profile_supported_le_audio, (1 << BluetoothProfile.LE_AUDIO)), new ProfileConfig(VolumeControlService.class, R.bool.profile_supported_vc, (1 << BluetoothProfile.VOLUME_CONTROL)), new ProfileConfig(McpService.class, R.bool.profile_supported_mcp_server, Loading