You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our project, we've successfully implemented Twilio video calls. We're now integrating the Twilio Voice framework as well. However, we've encountered an error: 'DefaultAudioDevice' is ambiguous for type lookup in this context.
Hello!
Yes, both Voice and Video SDKs have the same DefaultAudioDevice class name.
You can use the module name prefix to distinguish between them - TwilioVideo.DefaultAudioDevice() and TwilioVoice.DefaultAudioDevice()
In our project, we've successfully implemented Twilio video calls. We're now integrating the Twilio Voice framework as well. However, we've encountered an error: 'DefaultAudioDevice' is ambiguous for type lookup in this context.
import TwilioVideo
import CallKit
import TwilioVoice
var audioDevice: DefaultAudioDevice = DefaultAudioDevice()
I tried with TwilioVideoSDK.DefaultAudioDevice() but its throw the following error: "Type 'TwilioVideoSDK' has no member 'DefaultAudioDevice'"
The text was updated successfully, but these errors were encountered: