Documentation

Support

Vivox Core SDK

Vivox Core SDK

Change a Bluetooth profile

How to change the Bluetooth profile used by a Vivox application.
Read time 1 minuteLast updated 20 hours ago

To change the Bluetooth profile in a Vivox application using the Core SDK, refer to the follow code sample:
vx_sdk_config_t config; vx_get_default_config3(&config, sizeof(config));config.bluetooth_profile = vx_bluetooth_profile.vx_bluetooth_profile_a2dp;... // Any other config changes that are neededvx_initialize3(&config, sizeof(config));
To change the Bluetooth profile in a Vivox application using the Vivox Unity SDK, refer to the follow code sample:
vx_sdk_config_t vivox_config = new vx_sdk_config_t();vivox_config.bluetooth_profile = vx_bluetooth_profile.vx_bluetooth_profile_a2dp;... // Any other config changes that are neededVivoxService.Instance.Initialize(vivox_config);

Change a Bluetooth profile • Vivox Core SDK • Unity Docs