I use the linphone sdk and i want to get a list of audio devices, or rather their type and driverName, but it outputs in the style of {2: Audio, 3: Audio, 1: AAudio} Although if you do this on ios, it gives out normally in the style of {3: Speaker}
And here I would also like to do it on android
code:
val devices = core.audioDevices
val devicesMap: Map<Int, String> = devices.associateBy({ it.type.ordinal }, { it.driverName })