getMics

fun getMics(): Set<AppRTCAudioManager.AudioDevice>

This method can be used to get the set of available audio devices (microphones).

Code Example:


val mics = meeting.getMics()
for (mic in mics) {
    Log.d("Meeting", "Available mic: " + mic.name)
}

Return

a Set of available AppRTCAudioManager.AudioDevice options