0

I'm actually trying to link a code like #873766 directly into the phone's calling application. But only the # appears... Did you guys have a solution for this?

1 Answers1

1

You simply have to encode the USSD code like this :

    const ussdCodeEncoded = `tel:${encodeURIComponent(ussdCode)}`
    Linking.openURL("" + ussdCodeEncoded + "")
Béranger
  • 90
  • 7