getAudioDevices

Returns all available audio devices (speaker, earpiece, bluetooth, etc.).

Code Example:


val audioDevices = VideoSDK.getAudioDevices()
for (device in audioDevices) {
    Log.d("SDK", device.label)
}

Return

A set of AudioDeviceInfo objects representing available audio output devices.