Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@meerasolution/react-native-ms-upi-payment

meerasolution10MIT2.0.2

Add upi payment option to your android app in react native.

react-native, UPI Payment, UPI, Android UPI Payment

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 kkmadhpuriya@gmail.com