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.
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
})