@meerasolution/react-native-ms-upi-payment
v2.0.2
Published
Add upi payment option to your android app in react native.
Downloads
11
Maintainers
Readme
react-native-ms-upi-payment
Getting started
$ npm install @meerasolution/react-native-ms-upi-payment --save
or
$ yarn add @meerasolution/react-native-ms-upi-payment
Mostly automatic installation
$ react-native link @meerasolution/react-native-ms-upi-payment
Usage
import MsUpiPayment from '@meerasolution/react-native-ms-upi-payment';
async calledBtn() {
let txnId = 'MSTX' + Math.floor(Math.random() * 100000) + 1; // Transection ID
let txnRefId = 'MSTXF' + Math.floor(Math.random() * 1000) + 1; // Transection Ref ID
try {
let data = await MsUpiPayment.makePayment({
VPA: '7987060197@okbizaxis', // Required
payeeName: 'Meera Solution', // Required
txnID: txnId, // Required
txnRefId: txnRefId, // Required
payeeAmount: '1', // Required
currencyCode: 'INR', // Optional (Default 'INR')
txnNote: 'Test MS Payment', // Optional
refUrl: '', // Optional
});
console.log('payment response');
console.log(data);
} catch (e) {
console.log('Error');
Alert.alert('OOPS!', e.message);
console.log(e.message);
}
}
Issue
For Any Issue mail us on [email protected]