Search code examples
androidreact-nativetwiliotwilio-click-to-calltwilio-programmable-voice

Hide Phone Number in status bar while Twilio call is in progress


I have implemented twilio outbound call in react native using https://github.com/hoxfon/react-native-twilio-programmable-voice package. The outbound call is working fine. While in call in android the status bar shows users contact number. Is it possible to hide the number. Screenshot is attached below for reference.

enter image description here


Solution

  • Found a round about but not an ideal solution Sending name in To and number in number.

    await TwilioVoice.connect({ 
        To: this.props.route.params.buyerName, 
        Number: this.props.route.params.numberToCall
    })