get Audio Devices
Returns all available audio devices (speaker, earpiece, bluetooth, etc.).
Code Example:
val audioDevices = VideoSDK.getAudioDevices()
for (device in audioDevices) {
Log.d("SDK", device.label)
}
Content copied to clipboard
Return
A set of AudioDeviceInfo objects representing available audio output devices.