2

The following Linking.openURL method

const phone_number = '(800) 321 123 122'
Linking.openURL(`tel:${phone_number}`)

is not working on React Native 0.72, but worked on some earlier versions.

RadekR
  • 503
  • 3
  • 10
  • Does this answer your question? [Cannot open phone call with Linking.openURL](https://stackoverflow.com/questions/50272908/cannot-open-phone-call-with-linking-openurl) – user18309290 Jul 20 '23 at 14:45

1 Answers1

1

One needs to add // to prefix, e.g.

Linking.openURL(`tel://${phone_number}`) 
Linking.openURL(`maps://...`) 
RadekR
  • 503
  • 3
  • 10