-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any listener like 'TwilioVoice.addEventListener('deviceReady') not working in IOS #218
Comments
Hello, You guys have any update for me ? |
Facing the same issue for [email protected] |
@prerakd is it fixed for you? |
Having similar issue as well |
+1 same issue |
Same issue. Was working for years for me, but no longer works on iOS after upgrading to Xcode 14. Is this package dead now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I am using react-native-twilio-programmable-voice for making a phone call, this is working fine in android but not working in IOS.
TwilioVoice.initWithToken is return true and after that i calling listeners but linterners alr noe calling in ios.
My code is :
import TwilioVoice from 'react-native-twilio-programmable-voice';
useEffect(() => {
initTwilio()
}, [])
const listeners = () => {
console.log('listeners');
TwilioVoice.addEventListener('deviceReady', () => {
console.log('ready')
});
}
The text was updated successfully, but these errors were encountered: