Bluetooth Classic Devices

Bluetooth Classic Discovery

To discover Bluetooth Classic devices, call AddBluetoothDeviceAsync with the kBluetoothClassic mode. The behavior is platform-specific:

  • iOS and Windows: Opens the native Bluetooth device picker.

  • Android: Fires DeviceDiscovered events as devices are found nearby.

Example:

await capture.AddBluetoothDeviceAsync(ICaptureProperty.Values.BluetoothDiscoveryMode.kBluetoothClassic);

On Windows, the picker is automatically anchored to the foreground window. Optionally set WindowsBluetoothPicker.WindowHandle before calling this method to anchor it to a specific window.