I have a microphone recording app that checks for Microphone.devices and the bluetooth headset does not show up.
for (var device in Microphone.devices)
{
Debug.Log("Name: " + device);
}
Is there any way to access bluetooth devices as microphones on ios?
↧