Open skjangid opened 2 years ago
Hello, You guys have any update for me ?
Facing the same issue for react-native@0.67.2
@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?
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') });
}