I have to open a URL as below with Chrome or any default browser that is in Android from my ReactNative code.
upi://pay?pa=starbucks.payu@indus&pn=sample@okicici&am=5.00&tn=note&mc=&tr=1234567890
However, when I open this URL I get an error:
Possible Unhandled Promise Rejection......No activity found to handle intent.
My code which opens the links given below:
let upi_url = "upi://pay?pa=starbucks.payu@indus&pn=sample@okicici&am=5.00&tn=note&mc=&tr=1234567890";
Linking.openURL(upi_url)
It works fine if I pass a URL such as https://www.google.com
. I however have a QR code reader app, which is able to read the above URL and then open it with a browser when I click on the open website button in it. Just trying to figure out the direction to take.
For initiating UPI payment from react-native using intent flow, you just use the
react-native-upi-pay
package from here.Below is a working code: